Remove extra dollar sign

This commit is contained in:
Sam Carlton 2022-04-29 12:56:22 -05:00
parent 5aeb912931
commit ab2dbe2cd6

View file

@ -10,5 +10,5 @@ const listFormatter = new Intl.ListFormat('en', { style: 'short', type: 'disjunc
---
{ hasMultipleAliases ?
<small class="text-xs opacity-75">May also be known as ${ listFormatter.format( listing.aliases, 'or' ) }</small>
<small class="text-xs opacity-75">May also be known as { listFormatter.format( listing.aliases, 'or' ) }</small>
: '' }