fix(web): exclude emoji from translation string (#26852)

This commit is contained in:
Mees Frensel
2026-03-11 18:22:59 +01:00
committed by GitHub
parent c403e03a42
commit e45308b949
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
</svelte:head>
<section class="flex flex-col px-4 h-dvh w-dvw place-content-center place-items-center">
<h1 class="py-10 text-4xl text-primary">{$t('errors.page_not_found')}</h1>
<h1 class="py-10 text-4xl text-primary"><span>{$t('errors.page_not_found')}</span><span class="ps-3">:/</span></h1>
{#if page.error?.message}
<h2 class="text-xl text-immich-fg dark:text-immich-dark-fg">{page.error.message}</h2>
{/if}