Skip to content

Commit

Permalink
refactor(guard-app): rename "Tx Id" to "Lock Tx Id" in revenues table
Browse files Browse the repository at this point in the history
  • Loading branch information
mkermani144 committed Oct 14, 2023
1 parent cf206d5 commit 624b3a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/guard/app/revenues/TableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const mobileHeader = [

export const tabletHeader = [
{
title: 'Tx Id',
title: 'Lock Tx Id',
cellProps: {
width: 150,
},
Expand Down Expand Up @@ -120,7 +120,7 @@ export const MobileRow: FC<RowProps> = (props) => {
return (
<>
<TableRow sx={isLoading ? { opacity: 0.3 } : {}}>
<EnhancedTableCell>Tx Id</EnhancedTableCell>
<EnhancedTableCell>Lock Tx Id</EnhancedTableCell>
<EnhancedTableCell>
<Link href={`${baseTxUrl}${row.lockTxId}`} target="_blank">
{row.lockTxId.slice(0, 8)}
Expand Down

0 comments on commit 624b3a8

Please sign in to comment.