Skip to content

Commit

Permalink
fix transaction fee in detail
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Sep 24, 2023
1 parent d65c803 commit 7dcc924
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/apps/src/components/record-detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { BaseBridge } from "@/bridges/base";
import { getCrossChain } from "@/utils/cross-chain";
import { bridgeFactory } from "@/utils/bridge";
import CountdownRefresh from "@/ui/countdown-refresh";
import TransactionFee from "./transaction-fee";

const crossChain = getCrossChain();

Expand Down Expand Up @@ -127,7 +128,7 @@ export default function RecordDetail(props: Props) {
<TransactionValue record={record?.historyRecordById} />
</Section>
<Section label="Transaction Fee" tips="Amount paid for processing the cross-chain transaction.">
<TransactionValue record={record?.historyRecordById} />
<TransactionFee record={record?.historyRecordById} />
</Section>

<Divider />
Expand Down

0 comments on commit 7dcc924

Please sign in to comment.