Skip to content

Commit

Permalink
fix(suite): fix symbol formatting of review txs value
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvalcik authored and tomasklim committed Sep 26, 2024
1 parent 17f80dd commit c26f202
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ export const FormattedCryptoAmount = ({
<Container className={className}>
{!!signValue && <Sign value={signValue} />}
<Value data-testid={dataTest}>{formattedValue}</Value>
{formattedSymbol && <BlurUrls text={'\u00A0' + formattedSymbol} />}
{formattedSymbol && (
<>
{' '}
<BlurUrls text={formattedSymbol} />
</>
)}
</Container>
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit c26f202

Please sign in to comment.