Skip to content

Commit

Permalink
fix: ESLint import/order
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-sanderson committed Nov 20, 2024
1 parent 7c26dc1 commit 103a067
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eslint/src/importConfig.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const importConfig = [
},
],
'import/order': [
"warn",
'warn',
{
groups: [['builtin', 'external'], 'internal', ['sibling', 'parent']],
pathGroups: [
Expand Down
2 changes: 1 addition & 1 deletion packages/suite/src/hooks/wallet/useUnstakeEthForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
UnstakeContextValues as UnstakeContextValuesBase,
UnstakeFormState,
} from '@suite-common/wallet-core';
import { BigNumber } from '@trezor/utils';

import { useDispatch, useSelector } from 'src/hooks/suite';
import {
Expand All @@ -38,7 +39,6 @@ import {
import { useStakeCompose } from './form/useStakeCompose';
import { useFormDraft } from './useFormDraft';
import { useFees } from './form/useFees';
import { BigNumber } from '@trezor/utils';

type UnstakeOptions = 'all' | 'rewards' | 'other';

Expand Down
1 change: 1 addition & 0 deletions suite-native/graph/src/selectors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { A } from '@mobily/ts-belt';

import { AccountItem } from '@suite-common/graph';
import { isIgnoredBalanceHistoryCoin } from '@suite-common/graph/src/constants';
import {
Expand Down

0 comments on commit 103a067

Please sign in to comment.