commit 6867dd7f94e78ecce63d1664d9c7015342fb8776
parent af3e36c5dfb002d13543738a31f58443946bf68d
Author: MTRNord <mtrnord1@gmail.com>
Date: Wed, 4 Jan 2023 20:59:51 +0100
Fix loading string
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json
@@ -1,5 +1,5 @@
{
- "Loading...": "Loading...",
+ "Loading…": "Loading…",
"Login": "Login",
"Register": "Register",
"Search": "Search",
diff --git a/src/app.tsx b/src/app.tsx
@@ -105,7 +105,7 @@ function LoadingPage() {
<Header />
</header>
<main className="m-12 mt-6 flex items-center justify-center">
- <p className="text-lg text-data font-bold">{t('Loading...')}</p>
+ <p className="text-lg text-data font-bold">{t('Loading…')}</p>
</main>
</div>
);