From ab2dbe2cd68fe001f6742afcd6ecb54e04317c6f Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Fri, 29 Apr 2022 12:56:22 -0500 Subject: [PATCH] Remove extra dollar sign --- src/components/listing-parts/aliases.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/listing-parts/aliases.astro b/src/components/listing-parts/aliases.astro index 7c7c190..891246d 100644 --- a/src/components/listing-parts/aliases.astro +++ b/src/components/listing-parts/aliases.astro @@ -10,5 +10,5 @@ const listFormatter = new Intl.ListFormat('en', { style: 'short', type: 'disjunc --- { hasMultipleAliases ? - May also be known as ${ listFormatter.format( listing.aliases, 'or' ) } + May also be known as { listFormatter.format( listing.aliases, 'or' ) } : '' }