diff --git a/ts/features/wallet/utils/index.tsx b/ts/features/wallet/utils/index.tsx index 7cb01bb1498..e2dad27dfdd 100644 --- a/ts/features/wallet/utils/index.tsx +++ b/ts/features/wallet/utils/index.tsx @@ -28,11 +28,13 @@ export const renderWalletCardFn = ( card: WalletCard, stacked: boolean = false ) => { - const Component = walletCardComponentMapper[card.type]; + const { key, category, type, ...cardProps } = card; + const Component = walletCardComponentMapper[type]; return Component ? ( ) : null;