From d78b767547acf80df1731f33b650f34d4a8b664a Mon Sep 17 00:00:00 2001 From: Javier Bueno Date: Thu, 19 Oct 2023 03:33:42 +0200 Subject: [PATCH] refactor(swap): tx confirm info modals --- .../Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/wallet-mobile/src/features/Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx b/apps/wallet-mobile/src/features/Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx index e7a0310e8e..cd058d333e 100644 --- a/apps/wallet-mobile/src/features/Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx +++ b/apps/wallet-mobile/src/features/Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx @@ -93,7 +93,7 @@ export const TransactionSummary = () => { onPress={() => { openModal( orderInfo.label, - + {orderInfo.info} @@ -176,4 +176,8 @@ const styles = StyleSheet.create({ color: '#242838', paddingBottom: 8, }, + modalContent: { + justifyContent: 'space-between', + flex: 1, + }, })