aboutsummaryrefslogtreecommitdiffstats
path: root/src/I18n.tsx
diff options
context:
space:
mode:
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 {