summaryrefslogtreecommitdiffstats
path: root/src/I18n.tsx
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-24 21:25:05 +0200
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-06-25 05:50:00 +0530
commit2d71e61e46394d75d9f52ba1f4c273ed6d3c9cfd (patch)
tree7c0172945f962609637d03e7de885a254dbec8a4 /src/I18n.tsx
parentchore: improve todo menu behaviour on fresh install (#359) (diff)
downloadferdium-app-2d71e61e46394d75d9f52ba1f4c273ed6d3c9cfd.tar.gz
ferdium-app-2d71e61e46394d75d9f52ba1f4c273ed6d3c9cfd.tar.zst
ferdium-app-2d71e61e46394d75d9f52ba1f4c273ed6d3c9cfd.zip
chore: convert the last few stores to typescript
Diffstat (limited to 'src/I18n.tsx')
-rw-r--r--src/I18n.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/I18n.tsx b/src/I18n.tsx
index f5e157d97..1be6ab23d 100644
--- a/src/I18n.tsx
+++ b/src/I18n.tsx
@@ -17,7 +17,7 @@ type Props = {
17}; 17};
18 18
19class I18N extends Component<Props> { 19class I18N extends Component<Props> {
20 componentDidUpdate() { 20 componentDidUpdate(): void {
21 window['ferdium'].menu.rebuild(); 21 window['ferdium'].menu.rebuild();
22 } 22 }
23 23