Skip to content

Commit ccc58e7

Browse files
committed
lint fix
1 parent d8c7bb8 commit ccc58e7

File tree

209 files changed

+13
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+13
-231
lines changed

packages/yoroi-extension/app/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class App extends Component<Props, State> {
137137
{globalStyles(muiTheme)}
138138
<ThemeManager cssVariables={themeVars} />
139139
{this.getContent()}
140-
</ColorModeProvider>
140+
</ColorModeProvider>
141141
</div>
142142
);
143143
}

packages/yoroi-extension/app/assets/images/hardware-wallet/ledger/check.inline.svg

Lines changed: 0 additions & 17 deletions
This file was deleted.

packages/yoroi-extension/app/components/buySell/BuySellDialog.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// @flow
22
import type { Node } from 'react';
3-
import type { $npm$ReactIntl$IntlFormat } from 'react-intl';
43
import Tab, { tabClasses } from '@mui/material/Tab';
54
import Tabs, { tabsClasses } from '@mui/material/Tabs';
65
import { Box, Typography, styled } from '@mui/material';

packages/yoroi-extension/app/components/buySell/DisclaimerDialog.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ const messages = defineMessages({
5656

5757
type Props = {|
5858
onClose: void => void,
59-
onAccept: void => void,
60-
intl: $npm$ReactIntl$IntlFormat
61-
|};
59+
onAccept: void => void,
60+
intl: $npm$ReactIntl$IntlFormat,
61+
|};
6262

6363
export default function BuySellDisclaimerDialog(props: Props): Node {
6464
const [disclaimerAccepted, setDisclaimerAccepted] = useState(false)

packages/yoroi-extension/app/components/buySell/ExchangeEndPage.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { Component } from 'react';
33
import type { Node } from 'react';
44
import { observer } from 'mobx-react';
55
import { defineMessages, IntlContext } from 'react-intl';
6-
import type { $npm$ReactIntl$IntlFormat } from 'react-intl';
76
import { Button, Box } from '@mui/material';
87
import globalMessages from '../../i18n/global-messages';
98
import { styled } from '@mui/material/styles';

packages/yoroi-extension/app/components/common/NumericInputRP.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import React, { Component } from 'react';
99
import BigNumber, { BigNumber as BigNumberType } from 'bignumber.js';
1010
import type { ElementRef, Node, Ref } from 'react';
1111
import { defineMessages, IntlContext } from 'react-intl';
12-
import type { $npm$ReactIntl$IntlFormat } from 'react-intl';
1312
import TextField from './TextField';
1413
import { Box } from '@mui/system';
1514
import { Typography } from '@mui/material';

packages/yoroi-extension/app/components/dapp-connector/ConnectedWebsites/ConnectedWebsitesPage.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import type { Node } from 'react';
33
import { Component } from 'react';
44
import type { WhitelistEntry } from '../../../../chrome/extension/connector/types';
5-
import type { $npm$ReactIntl$IntlFormat } from 'react-intl';
65
import { defineMessages, IntlContext } from 'react-intl';
76
import type { TokenRow } from '../../../api/ada/lib/storage/database/primitives/tables';
87
import type { TokenLookupKey } from '../../../api/common/lib/MultiToken';

packages/yoroi-extension/app/components/dapp-connector/ConnectedWebsites/WalletRowRevamp.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import type { Node } from 'react';
44
import type { MultiToken, TokenLookupKey } from '../../../api/common/lib/MultiToken';
55
import type { TokenRow } from '../../../api/ada/lib/storage/database/primitives/tables';
6-
import type { $npm$ReactIntl$IntlFormat } from 'react-intl';
76
import type { WalletChecksum } from '@emurgo/cip4-js';
87
import { Component } from 'react';
98
import { getTokenName } from '../../../stores/stateless/tokenHelpers';

packages/yoroi-extension/app/components/loading/Crashed.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import type { Node } from 'react';
44
import { observer } from 'mobx-react';
55
import styles from './Crashed.scss';
66
import globalMessages from '../../i18n/global-messages';
7-
import type { $npm$ReactIntl$IntlFormat } from 'react-intl';
87
import UnavailableDialog from '../widgets/UnavailableDialog';
98
import { defineMessages, IntlContext, FormattedMessage } from 'react-intl';
109
import { Link, Typography } from '@mui/material';

packages/yoroi-extension/app/components/loading/Loading.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import LoadingSpinner from '../widgets/LoadingSpinner';
88
import styles from './Loading.scss';
99
import LocalizableError from '../../i18n/LocalizableError';
1010
import globalMessages from '../../i18n/global-messages';
11-
import type { $npm$ReactIntl$IntlFormat } from 'react-intl';
1211
import IntroBanner from '../profile/language-selection/IntroBanner';
1312
import { environment } from '../../environment';
1413

0 commit comments

Comments
 (0)