diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a5277c5..152d4aed0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -86,6 +86,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug fixes +- [#612](https://github.com/alleslabs/celatone-frontend/pull/612) Add saved accounts page - [#614](https://github.com/alleslabs/celatone-frontend/pull/614) Disabled saved account for now - [#607](https://github.com/alleslabs/celatone-frontend/pull/607) Fix mintscan tracking in internal - [#604](https://github.com/alleslabs/celatone-frontend/pull/604) Fix single delegation total card zero state diff --git a/src/lib/components/tx/TxReceiptRender.tsx b/src/lib/components/tx/TxReceiptRender.tsx index 62e50ba5d..463a7e95c 100644 --- a/src/lib/components/tx/TxReceiptRender.tsx +++ b/src/lib/components/tx/TxReceiptRender.tsx @@ -49,12 +49,7 @@ const variantStyle: Record< }; const ReceiptRow = ({ title, value, html }: TxReceipt) => ( - + {title} diff --git a/src/lib/pages/tx-details/components/tx-message/TxMsgDetails.tsx b/src/lib/pages/tx-details/components/tx-message/TxMsgDetails.tsx index eb5d7b71a..e5dc3480e 100644 --- a/src/lib/pages/tx-details/components/tx-message/TxMsgDetails.tsx +++ b/src/lib/pages/tx-details/components/tx-message/TxMsgDetails.tsx @@ -49,7 +49,11 @@ export const TxMsgDetails = ({ overflow="hidden" transition="all 0.25s ease-in-out" > - + ); };