From d801f4f544ce94de361d911b1e292581467ca5cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20Tranta?= Date: Wed, 14 Jan 2026 10:14:37 +0100 Subject: [PATCH] fix: lints / formatting --- packages/suite/src/components/guide/HeaderBreadcrumb.tsx | 3 +-- .../src/views/settings/SettingsGeneral/NetworkReserve.tsx | 1 + packages/suite/src/views/start/AnalyticsConsentScreen.tsx | 1 - suite-native/module-send/src/components/AddressInput.tsx | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/suite/src/components/guide/HeaderBreadcrumb.tsx b/packages/suite/src/components/guide/HeaderBreadcrumb.tsx index 4c51fbad11..3dd74206a6 100644 --- a/packages/suite/src/components/guide/HeaderBreadcrumb.tsx +++ b/packages/suite/src/components/guide/HeaderBreadcrumb.tsx @@ -1,8 +1,7 @@ +import { EventType } from '@suite/analytics'; import { Translation } from '@suite/intl'; import type { GuideCategory } from '@suite-common/suite-types'; - import { Row, Text, TextButton } from '@trezor/components'; -import { EventType } from '@suite/analytics'; import { openNode, setView } from 'src/actions/suite/guideActions'; import { useDispatch, useSelector } from 'src/hooks/suite'; diff --git a/packages/suite/src/views/settings/SettingsGeneral/NetworkReserve.tsx b/packages/suite/src/views/settings/SettingsGeneral/NetworkReserve.tsx index 37ba65d370..dde45dced4 100644 --- a/packages/suite/src/views/settings/SettingsGeneral/NetworkReserve.tsx +++ b/packages/suite/src/views/settings/SettingsGeneral/NetworkReserve.tsx @@ -6,6 +6,7 @@ import { networksCollection } from '@suite-common/wallet-config'; import { selectIsNetworkReserveEnabled, setNetworkReserve } from '@suite-common/wallet-core'; import { Switch } from '@trezor/components'; import { NETWORK_RESERVE_URL } from '@trezor/urls'; + import { SettingsSectionItem } from 'src/components/settings/SettingsSectionItem'; import { ActionColumn, TextColumn } from 'src/components/suite'; import { SettingsAnchor } from 'src/constants/suite/anchors'; diff --git a/packages/suite/src/views/start/AnalyticsConsentScreen.tsx b/packages/suite/src/views/start/AnalyticsConsentScreen.tsx index 566b0eee97..de0e4fd1c5 100644 --- a/packages/suite/src/views/start/AnalyticsConsentScreen.tsx +++ b/packages/suite/src/views/start/AnalyticsConsentScreen.tsx @@ -1,7 +1,6 @@ import { ReactNode } from 'react'; import { Column } from '@trezor/components'; - import { DataAnalytics } from '@trezor/product-components'; import { DATA_TOS_URL, DOCS_ANALYTICS_URL } from '@trezor/urls'; diff --git a/suite-native/module-send/src/components/AddressInput.tsx b/suite-native/module-send/src/components/AddressInput.tsx index 048a0fbc7d..3405e258bf 100644 --- a/suite-native/module-send/src/components/AddressInput.tsx +++ b/suite-native/module-send/src/components/AddressInput.tsx @@ -16,8 +16,8 @@ import { isDebugEnv } from '@suite-native/config'; import { TextInputField, useFormContext } from '@suite-native/forms'; import { Translation } from '@suite-native/intl'; import { SendFormLabelEditable } from '@suite-native/labeling'; -import { HELP_CENTER_EVM_ADDRESS_CHECKSUM, HELP_CENTER_SOLANA_HELP_URL } from '@trezor/urls'; import { useLegacyAnalytics } from '@suite-native/services'; +import { HELP_CENTER_EVM_ADDRESS_CHECKSUM, HELP_CENTER_SOLANA_HELP_URL } from '@trezor/urls'; import { QrCodeBottomSheetIcon } from './QrCodeBottomSheetIcon'; import { useAddressValidationAlerts } from '../hooks/useAddressValidationAlerts/useAddressValidationAlerts';