aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth/SetupAssistant.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-22 02:33:33 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-03-21 21:24:35 +0000
commit2f3f2ae7f098376f535e5aa993c9eedc14e36f5d (patch)
treed919bda212744493a7b66c2e91a75455421d62cc /src/components/auth/SetupAssistant.tsx
parentUpgrade electron to '29.1.5' (diff)
downloadferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.gz
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.zst
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.zip
Upgrade node modules
Diffstat (limited to 'src/components/auth/SetupAssistant.tsx')
-rw-r--r--src/components/auth/SetupAssistant.tsx24
1 files changed, 14 insertions, 10 deletions
diff --git a/src/components/auth/SetupAssistant.tsx b/src/components/auth/SetupAssistant.tsx
index c25495471..c1965dbb4 100644
--- a/src/components/auth/SetupAssistant.tsx
+++ b/src/components/auth/SetupAssistant.tsx
@@ -1,17 +1,21 @@
1import { Component } from 'react';
2import { observer } from 'mobx-react';
3import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl';
4import withStyles, { WithStylesProps } from 'react-jss';
5import classnames from 'classnames'; 1import classnames from 'classnames';
6import Input from '../ui/input/index'; 2import { observer } from 'mobx-react';
7import Button from '../ui/button'; 3import { Component } from 'react';
8import Badge from '../ui/badge'; 4import {
9import Modal from '../ui/Modal'; 5 type WrappedComponentProps,
6 defineMessages,
7 injectIntl,
8} from 'react-intl';
9import withStyles, { type WithStylesProps } from 'react-jss';
10import { CDN_URL } from '../../config';
11import globalMessages from '../../i18n/globalMessages';
10import Infobox from '../ui/Infobox'; 12import Infobox from '../ui/Infobox';
13import Modal from '../ui/Modal';
14import Badge from '../ui/badge';
15import Button from '../ui/button';
11import Appear from '../ui/effects/Appear'; 16import Appear from '../ui/effects/Appear';
12import globalMessages from '../../i18n/globalMessages';
13import { CDN_URL } from '../../config';
14import { H1, H2 } from '../ui/headline'; 17import { H1, H2 } from '../ui/headline';
18import Input from '../ui/input/index';
15 19
16const SLACK_ID = 'slack'; 20const SLACK_ID = 'slack';
17 21