diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-26 16:58:27 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-26 16:58:27 +0100 |
| commit | f4eb8b6fc931f7ded138dceb2b9df4c63ac7e353 (patch) | |
| tree | ca189d7ff7beb80a2626c0747a367e745374cf78 /src/components/Navbar/Logo.astro | |
| parent | c8f9f07197fa49ad114a30d4c40bdf24443acc3a (diff) | |
Differentiates getLocaleFromPath failure strategies
Diffstat (limited to 'src/components/Navbar/Logo.astro')
| -rw-r--r-- | src/components/Navbar/Logo.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Navbar/Logo.astro b/src/components/Navbar/Logo.astro index 6dc372c..dc87d19 100644 --- a/src/components/Navbar/Logo.astro +++ b/src/components/Navbar/Logo.astro @@ -1,9 +1,9 @@ --- import translate from '$i18n/translate'; -import getLocaleFromPath from '$lib/getLocaleFromPath'; +import { getLocaleFromPathOrDefault } from '$lib/getLocaleFromPath'; import tSite from '$i18n/translations/site'; -const locale = getLocaleFromPath(Astro.url.pathname); +const locale = getLocaleFromPathOrDefault(Astro.url.pathname); const t = translate(locale); --- |
