Skip to content

Commit

Permalink
fixup! feat(suite-native): Mobile Trade: Account and address picker stub
Browse files Browse the repository at this point in the history
  • Loading branch information
jbazant committed Feb 13, 2025
1 parent 068c0c1 commit 867b0cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ type RightTextProps = {
};

type ReceiveAccountPickerRightProps = {
selectedAccountLabel: undefined | ReceiveAccount['account']['accountLabel'];
selectedAddress: undefined | NonNullable<ReceiveAccount['address']>['address'];
selectedAccountLabel: string | undefined;
selectedAddress: string | undefined;
};

type ReceiveAccountPickerProps = {
Expand Down
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -8,7 +7,7 @@ import { SheetHeaderTitle } from '../SheetHeaderTitle';

export type AccountSheetHeaderProps = {
onClose: () => void;
selectedAccountLabel: undefined | Account['accountLabel'];
selectedAccountLabel: string | undefined;
clearSelectedAccount: () => void;
};

Expand Down

0 comments on commit 867b0cf

Please sign in to comment.