From f09d96aed438ccf770d6b7fe2abda10b2f44f533 Mon Sep 17 00:00:00 2001 From: songwongtp <16089160+songwongtp@users.noreply.github.com> Date: Tue, 7 Nov 2023 15:59:35 +0700 Subject: [PATCH] fix: tx-ui-detail --- CHANGELOG.md | 1 + src/lib/components/tx/TxReceiptRender.tsx | 7 +------ .../tx-details/components/tx-message/TxMsgDetails.tsx | 6 +++++- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d46200f9..72ab363cd 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 - [#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 - [#603](https://github.com/alleslabs/celatone-frontend/pull/603) Dynamically change returned data by isWasm, isMove 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" > - + ); };