aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2023-05-28 13:48:21 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2023-05-28 13:48:21 +0530
commit99ca310c73024b51fed1f3077375eed7827f2c20 (patch)
tree2bd15986f448129a2291acba90ccc6bf68a233e0 /src/components/auth
parentDisable in-app auto-updates for portable windows installation (fixes #1088) (... (diff)
downloadferdium-app-99ca310c73024b51fed1f3077375eed7827f2c20.tar.gz
ferdium-app-99ca310c73024b51fed1f3077375eed7827f2c20.tar.zst
ferdium-app-99ca310c73024b51fed1f3077375eed7827f2c20.zip
Fix issues reported by sonarqube linter
Diffstat (limited to 'src/components/auth')
-rw-r--r--src/components/auth/Invite.tsx2
-rw-r--r--src/components/auth/SetupAssistant.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/auth/Invite.tsx b/src/components/auth/Invite.tsx
index cebef9365..4f2cb19fe 100644
--- a/src/components/auth/Invite.tsx
+++ b/src/components/auth/Invite.tsx
@@ -86,7 +86,7 @@ class Invite extends Component<IProps, IState> {
86 }, 86 },
87 }, 87 },
88 }), 88 }),
89 // TODO - [TS DEBT] need to fix this type once mobx-react-form is updated to next version 89 // TODO: [TS DEBT] need to fix this type once mobx-react-form is updated to next version
90 ] as any, 90 ] as any,
91 }, 91 },
92 }); 92 });
diff --git a/src/components/auth/SetupAssistant.tsx b/src/components/auth/SetupAssistant.tsx
index c5fb79919..fdcbba45e 100644
--- a/src/components/auth/SetupAssistant.tsx
+++ b/src/components/auth/SetupAssistant.tsx
@@ -135,7 +135,7 @@ const styles = theme => ({
135interface IProps extends WithStylesProps<typeof styles>, WrappedComponentProps { 135interface IProps extends WithStylesProps<typeof styles>, WrappedComponentProps {
136 onSubmit: (...args: any[]) => void; 136 onSubmit: (...args: any[]) => void;
137 isInviteSuccessful?: boolean; 137 isInviteSuccessful?: boolean;
138 services: any; // TODO - [TS DEBT] check legacy services type 138 services: any; // TODO: [TS DEBT] check legacy services type
139 isSettingUpServices: boolean; 139 isSettingUpServices: boolean;
140} 140}
141 141