From 011c4266ccbf3ff66d92e223b2fafd291127c102 Mon Sep 17 00:00:00 2001 From: João Augusto Costa Branco Marado Torres Date: Fri, 4 Jul 2025 15:37:50 -0300 Subject: style: deno fmt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Augusto Costa Branco Marado Torres --- src/components/Translations.astro | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/components/Translations.astro') diff --git a/src/components/Translations.astro b/src/components/Translations.astro index b0164bb..6c2bf42 100644 --- a/src/components/Translations.astro +++ b/src/components/Translations.astro @@ -20,7 +20,7 @@ const translations = await getEntries(Astro.props.translations ?? []).then( --- { - /* TODO: What about and ? */ + /* TODO: What about and ? */ } { @@ -31,17 +31,17 @@ const translations = await getEntries(Astro.props.translations ?? []).then(
    { translations.map(async ( - { data, collection, id }, - ) => { - const active = lang.localeCompare(data.lang) === 0; - return ( + { data, collection, id }, + ) => { + const active = lang.localeCompare(data.lang) === 0; + return (
  • {data.lang})
  • ); - }) + }) }
-- cgit v1.2.3