aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-10-26 23:45:39 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-10-26 23:45:39 +0530
commitba187b17c4927c83b35e872a56c503d5aa1dcbf2 (patch)
treedf9fffd86d1d0b24c2e1fbb1ddd3b4d4c7e60568 /src/components/ui
parentchore: replace 'electron-notarize' with '@electron/notarize' (#711) (diff)
downloadferdium-app-ba187b17c4927c83b35e872a56c503d5aa1dcbf2.tar.gz
ferdium-app-ba187b17c4927c83b35e872a56c503d5aa1dcbf2.tar.zst
ferdium-app-ba187b17c4927c83b35e872a56c503d5aa1dcbf2.zip
Lint fixes and recipes update to bring in same node version as the parent repo
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/Loader.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ui/Loader.tsx b/src/components/ui/Loader.tsx
index ae51f8145..5e78ed47a 100644
--- a/src/components/ui/Loader.tsx
+++ b/src/components/ui/Loader.tsx
@@ -1,4 +1,4 @@
1import {Component, PropsWithChildren} from 'react'; 1import { Component, PropsWithChildren } from 'react';
2import { observer, inject } from 'mobx-react'; 2import { observer, inject } from 'mobx-react';
3import Loader from 'react-loader'; 3import Loader from 'react-loader';
4 4
@@ -12,7 +12,7 @@ interface IProps {
12} 12}
13 13
14// Can this file be merged into the './loader/index.tsx' file? 14// Can this file be merged into the './loader/index.tsx' file?
15@inject("stores") 15@inject('stores')
16@observer 16@observer
17class LoaderComponent extends Component<PropsWithChildren<IProps>> { 17class LoaderComponent extends Component<PropsWithChildren<IProps>> {
18 static defaultProps = { 18 static defaultProps = {