From 0d1af155940fe690a366b609865268cd8b71ab8c Mon Sep 17 00:00:00 2001 From: Jon Tzeng Date: Thu, 11 Jan 2024 19:41:07 -0800 Subject: [PATCH] fixup! Integrate ModalUi4 into most places --- src/components/modals/TransferModal.tsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/components/modals/TransferModal.tsx b/src/components/modals/TransferModal.tsx index 790764484e1..74d24ec1968 100644 --- a/src/components/modals/TransferModal.tsx +++ b/src/components/modals/TransferModal.tsx @@ -156,18 +156,7 @@ export const TransferModal = ({ account, bridge, depositOrSend, navigation }: Pr {depositOrSend === 'deposit' ? lstrings.loan_fragment_deposit : lstrings.fragment_send_subtitle} {options.map((option, index) => { const { title, icon, onPress } = option - return ( - {icon}} - // HACK: ThemedModal has 1 rem padding all around, making it - // impossible to use components expecting split 0.5rem - // margin/padding. - marginRem={[0.5, -0.5]} - /> - ) + return {icon}} /> })} )