From a89f9040522479115ffeffe05986a823a0e41835 Mon Sep 17 00:00:00 2001 From: Javier Bueno Date: Thu, 19 Oct 2023 05:55:32 +0200 Subject: [PATCH] CR: update --- .../Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx | 8 +++++++- 1 file changed, 7 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 cd058d333e..b7030cd024 100644 --- a/apps/wallet-mobile/src/features/Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx +++ b/apps/wallet-mobile/src/features/Swap/useCases/ConfirmTxScreen/TransactionSummary.tsx @@ -94,7 +94,7 @@ export const TransactionSummary = () => { openModal( orderInfo.label, - {orderInfo.info} + {orderInfo.info} @@ -180,4 +180,10 @@ const styles = StyleSheet.create({ justifyContent: 'space-between', flex: 1, }, + modalText: { + fontFamily: 'Rubik', + fontWeight: '400', + fontSize: 16, + lineHeight: 24, + }, })