From 59376d14b1ef5061cd26968dd8c7a8e54414c169 Mon Sep 17 00:00:00 2001 From: iGroza Date: Wed, 28 Aug 2024 11:09:26 +0700 Subject: [PATCH] fix(hw-610): fix-texts --- src/components/transaction-finish.tsx | 4 ++-- src/components/transaction-nft-finish.tsx | 23 ++++++++++++++++++++++- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/src/components/transaction-finish.tsx b/src/components/transaction-finish.tsx index 1926e3448..37dd3c67b 100644 --- a/src/components/transaction-finish.tsx +++ b/src/components/transaction-finish.tsx @@ -137,12 +137,12 @@ export const TransactionFinish = observer( diff --git a/src/components/transaction-nft-finish.tsx b/src/components/transaction-nft-finish.tsx index 6dd0bfc84..0cdae85e0 100644 --- a/src/components/transaction-nft-finish.tsx +++ b/src/components/transaction-nft-finish.tsx @@ -26,6 +26,7 @@ import {Fee} from '@app/models/fee'; import {NftItem} from '@app/models/nft'; import {sendNotification} from '@app/services'; import {TransactionResponse} from '@app/types'; +import {STRINGS} from '@app/variables/common'; import {ImageWrapper} from './image-wrapper'; @@ -110,7 +111,18 @@ export const TransactionNftFinish = ({ - + + + + @@ -210,4 +222,13 @@ const styles = createTheme({ alignSelf: 'center', justifyContent: 'center', }, + providerContainer: { + backgroundColor: Color.bg8, + borderRadius: 8, + paddingHorizontal: 12, + paddingVertical: 6, + marginTop: 16, + alignSelf: 'center', + flexDirection: 'row', + }, });