Skip to content

Commit

Permalink
Merge branch '485-disable-the-forced-uppercase-format-for-token-name-…
Browse files Browse the repository at this point in the history
…in-the-balance-field' into 'dev'

Resolve "Disable the forced uppercase format for token name in the balance field"

Closes #485

See merge request ergo/rosen-bridge/ui!405
  • Loading branch information
zargarzadehm committed Dec 28, 2024
2 parents 32bd402 + e107fbb commit 86a9d83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/ninety-bottles-type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rosen-bridge/rosen-app': patch
---

Disable the forced uppercase format for token name in the balance field
2 changes: 1 addition & 1 deletion apps/rosen/app/(bridge)/UseAllAmount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const UseAllAmount = ({
<span>
Use all
<br />
{value} <small>{unit}</small>
{value} <small style={{ textTransform: 'none' }}>{unit}</small>
</span>
</Button>
)}
Expand Down

0 comments on commit 86a9d83

Please sign in to comment.