diff --git a/suite-native/module-trading/src/components/buy/ReceiveAccountPicker.tsx b/suite-native/module-trading/src/components/buy/ReceiveAccountPicker.tsx index 651f01583dd5..50f4e84e1dc6 100644 --- a/suite-native/module-trading/src/components/buy/ReceiveAccountPicker.tsx +++ b/suite-native/module-trading/src/components/buy/ReceiveAccountPicker.tsx @@ -17,8 +17,8 @@ type RightTextProps = { }; type ReceiveAccountPickerRightProps = { - selectedAccountLabel: undefined | ReceiveAccount['account']['accountLabel']; - selectedAddress: undefined | NonNullable['address']; + selectedAccountLabel: string | undefined; + selectedAddress: string | undefined; }; type ReceiveAccountPickerProps = { diff --git a/suite-native/module-trading/src/components/general/AccountSheet/AccountSheetHeader.tsx b/suite-native/module-trading/src/components/general/AccountSheet/AccountSheetHeader.tsx index d381e83fd488..43446fb23492 100644 --- a/suite-native/module-trading/src/components/general/AccountSheet/AccountSheetHeader.tsx +++ b/suite-native/module-trading/src/components/general/AccountSheet/AccountSheetHeader.tsx @@ -1,4 +1,3 @@ -import { Account } from '@suite-common/wallet-types'; import { BottomSheetGrabber, VStack } from '@suite-native/atoms'; import { Translation, useTranslate } from '@suite-native/intl'; import { prepareNativeStyle, useNativeStyles } from '@trezor/styles'; @@ -8,7 +7,7 @@ import { SheetHeaderTitle } from '../SheetHeaderTitle'; export type AccountSheetHeaderProps = { onClose: () => void; - selectedAccountLabel: undefined | Account['accountLabel']; + selectedAccountLabel: string | undefined; clearSelectedAccount: () => void; };