From c26f202cc5d713e7e1ed06444dbb55af6640dd17 Mon Sep 17 00:00:00 2001 From: eric valcik Date: Thu, 26 Sep 2024 14:17:39 +0200 Subject: [PATCH] fix(suite): fix symbol formatting of review txs value --- .../suite/src/components/suite/FormattedCryptoAmount.tsx | 7 ++++++- .../TransactionReviewModal/TransactionReviewSummary.tsx | 1 - 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/suite/src/components/suite/FormattedCryptoAmount.tsx b/packages/suite/src/components/suite/FormattedCryptoAmount.tsx index d2d1cab343c..637aac0dff7 100644 --- a/packages/suite/src/components/suite/FormattedCryptoAmount.tsx +++ b/packages/suite/src/components/suite/FormattedCryptoAmount.tsx @@ -89,7 +89,12 @@ export const FormattedCryptoAmount = ({ {!!signValue && } {formattedValue} - {formattedSymbol && } + {formattedSymbol && ( + <> + {' '} + + + )} ); diff --git a/packages/suite/src/components/suite/modals/ReduxModal/TransactionReviewModal/TransactionReviewSummary.tsx b/packages/suite/src/components/suite/modals/ReduxModal/TransactionReviewModal/TransactionReviewSummary.tsx index 31c44842593..a33e50089f6 100644 --- a/packages/suite/src/components/suite/modals/ReduxModal/TransactionReviewModal/TransactionReviewSummary.tsx +++ b/packages/suite/src/components/suite/modals/ReduxModal/TransactionReviewModal/TransactionReviewSummary.tsx @@ -70,7 +70,6 @@ const Headline = styled.div` font-size: 16px; font-weight: 600; margin-top: 20px; - word-break: break-all; `; const AccountWrapper = styled.div`