diff --git a/CHANGELOG.md b/CHANGELOG.md index 18ea575f7..8c1eb9e80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug fixes +- [#761](https://github.com/alleslabs/celatone-frontend/pull/761) Fix copy button tooltip alignment - [#754](https://github.com/alleslabs/celatone-frontend/pull/754) Fix mobile guard incorrect behavior - [#751](https://github.com/alleslabs/celatone-frontend/pull/751) Fix fail txs should have no logs and remove stone-12-1 diff --git a/src/lib/components/copy/CopyTemplate.tsx b/src/lib/components/copy/CopyTemplate.tsx index e353c53e4..a81230043 100644 --- a/src/lib/components/copy/CopyTemplate.tsx +++ b/src/lib/components/copy/CopyTemplate.tsx @@ -27,8 +27,7 @@ export const CopyTemplate = ({ return ( { onCopy(); e.stopPropagation(); diff --git a/src/lib/components/token/UnsupportedToken.tsx b/src/lib/components/token/UnsupportedToken.tsx index 8c1c694b8..a18ebf11a 100644 --- a/src/lib/components/token/UnsupportedToken.tsx +++ b/src/lib/components/token/UnsupportedToken.tsx @@ -85,15 +85,22 @@ export const UnsupportedToken = ({ token }: { token: TokenWithValue }) => { amptrackSection="unsupported_token_copy" /> + + + + {formatUTokenWithPrecision(token.amount, token.precision ?? 0, false)} + {!isMobile && ( - + {`${tokenType} Token`} )} - - {formatUTokenWithPrecision(token.amount, token.precision ?? 0, false)} - ); };