aboutsummaryrefslogtreecommitdiffstats
path: root/src/I18n.tsx
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-26 23:59:32 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-26 21:59:32 +0000
commit6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9 (patch)
tree1676f5eef42b8086d28476c7eaad62c7b1753120 /src/I18n.tsx
parentReduce tab item layout shift (#376) (diff)
downloadferdium-app-6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9.tar.gz
ferdium-app-6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9.tar.zst
ferdium-app-6bff2bb5439d25e0ab2a24a8ca1b28b89ef40ff9.zip
chore: turned all auth containers into typescript (#375)
Diffstat (limited to 'src/I18n.tsx')
-rw-r--r--src/I18n.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/I18n.tsx b/src/I18n.tsx
index 1be6ab23d..b486758c3 100644
--- a/src/I18n.tsx
+++ b/src/I18n.tsx
@@ -8,13 +8,13 @@ import AppStore from './stores/AppStore';
8 8
9const translations = generatedTranslations(); 9const translations = generatedTranslations();
10 10
11type Props = { 11interface Props {
12 stores: { 12 stores: {
13 app: AppStore; 13 app: AppStore;
14 user: UserStore; 14 user: UserStore;
15 }; 15 };
16 children: ReactNode; 16 children: ReactNode;
17}; 17}
18 18
19class I18N extends Component<Props> { 19class I18N extends Component<Props> {
20 componentDidUpdate(): void { 20 componentDidUpdate(): void {