Skip to content

Commit

Permalink
fix: add space to amount on activity details
Browse files Browse the repository at this point in the history
  • Loading branch information
greatertomi committed May 7, 2024
1 parent 8b4f652 commit 020de63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const RewardsDetails = ({
<span
className={styles.ada}
data-testid="rewards-received-detail-ada"
>{`${rewards.totalAmount} ${coinSymbol}`}</span>
>{`${rewards.totalAmount} ${coinSymbol}`}</span>{' '}
<span className={styles.fiat} data-testid="rewars-received-detail-fiat">{`${amountTransformer(
rewards.totalAmount
)}`}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export const TransactionDetails = ({
<div className={styles.title}>{label}</div>
<div className={styles.detail}>
<div className={styles.amount}>
<span className={styles.ada}>{`${value} ${coinSymbol}`}</span>
<span className={styles.ada}>{`${value} ${coinSymbol}`}</span>{' '}
<span className={styles.fiat}>{amountTransformer(value)}</span>
</div>
</div>
Expand Down Expand Up @@ -337,7 +337,7 @@ export const TransactionDetails = ({
<span
className={styles.ada}
data-testid="tx-sent-detail-ada"
>{`${summary.amount} ${coinSymbol}`}</span>
>{`${summary.amount} ${coinSymbol}`}</span>{' '}
<span className={styles.fiat} data-testid="tx-sent-detail-fiat">{`${amountTransformer(
summary.amount
)}`}</span>
Expand Down

0 comments on commit 020de63

Please sign in to comment.