From 403af485d307cb41371e95a8a9df57c7028b505f Mon Sep 17 00:00:00 2001 From: Vlad Novak Date: Tue, 7 Nov 2023 17:43:42 +0200 Subject: [PATCH] lint fixes --- .../SeedLengthSelect/SeedLengthOption/SeedLengthOption.tsx | 3 ++- .../SeedPhraseInput/SeedLengthSelect/SeedLengthSelect.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthOption/SeedLengthOption.tsx b/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthOption/SeedLengthOption.tsx index 3133cfcb1..ed600a677 100644 --- a/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthOption/SeedLengthOption.tsx +++ b/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthOption/SeedLengthOption.tsx @@ -3,8 +3,9 @@ import React, { FC, memo, useCallback } from 'react'; import { emptyFn } from '@rnw-community/shared'; import classNames from 'clsx'; -import { setAnotherSelector, setTestID } from 'lib/analytics'; import { ImportAccountSelectors } from 'app/pages/ImportAccount/selectors'; +import { setAnotherSelector, setTestID } from 'lib/analytics'; + import styles from './seedLengthOption.module.css'; interface Props { diff --git a/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthSelect.tsx b/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthSelect.tsx index acbafbc12..040ce1127 100644 --- a/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthSelect.tsx +++ b/src/app/templates/SeedPhraseInput/SeedLengthSelect/SeedLengthSelect.tsx @@ -3,10 +3,10 @@ import React, { FC, useCallback, useEffect, useRef, useState } from 'react'; import classNames from 'clsx'; import { ReactComponent as SelectArrowDownIcon } from 'app/icons/select-arrow-down.svg'; +import { ImportAccountSelectors } from 'app/pages/ImportAccount/selectors'; import { setTestID } from 'lib/analytics'; import { t } from 'lib/i18n'; -import { ImportAccountSelectors } from 'app/pages/ImportAccount/selectors'; import { SeedLengthOption } from './SeedLengthOption/SeedLengthOption'; interface SeedLengthSelectProps {