summaryrefslogtreecommitdiffstats
path: root/src/I18n.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-22 02:33:33 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-03-21 21:24:35 +0000
commit2f3f2ae7f098376f535e5aa993c9eedc14e36f5d (patch)
treed919bda212744493a7b66c2e91a75455421d62cc /src/I18n.tsx
parentUpgrade electron to '29.1.5' (diff)
downloadferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.gz
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.zst
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.zip
Upgrade node modules
Diffstat (limited to 'src/I18n.tsx')
-rw-r--r--src/I18n.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/I18n.tsx b/src/I18n.tsx
index 1a69ed1a2..2085f3e98 100644
--- a/src/I18n.tsx
+++ b/src/I18n.tsx
@@ -1,10 +1,10 @@
1import { Component, ReactNode } from 'react';
2import { inject, observer } from 'mobx-react'; 1import { inject, observer } from 'mobx-react';
2import { Component, type ReactNode } from 'react';
3import { IntlProvider } from 'react-intl'; 3import { IntlProvider } from 'react-intl';
4 4
5import generatedTranslations from './i18n/translations'; 5import generatedTranslations from './i18n/translations';
6import UserStore from './stores/UserStore'; 6import type AppStore from './stores/AppStore';
7import AppStore from './stores/AppStore'; 7import type UserStore from './stores/UserStore';
8 8
9const translations = generatedTranslations(); 9const translations = generatedTranslations();
10 10