Skip to content

Commit

Permalink
change id to Hook Address
Browse files Browse the repository at this point in the history
  • Loading branch information
allenchuang committed Dec 8, 2023
1 parent 6ee9f7e commit 5e27e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/views/Hook/HookTableComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import BaseDataViewer from '../BaseDataViewer';
const columns: ColumnDef<Hook>[] = [
{
accessorKey: 'txHash',
header: 'Txn',
header: 'Txn Hash',
cell: ({ row }) => (
<Link href={`/transactions/${row.original.txHash}`} className="capitalize font-mono underline">
{shortenString(row.original.txHash, 20)}
Expand All @@ -20,7 +20,7 @@ const columns: ColumnDef<Hook>[] = [
},
{
accessorKey: 'id',
header: 'ID',
header: 'Hook Address',
cell: ({ row }) => (
<Link href={`/transactions/${row.original.id}`} className="capitalize font-mono underline">
{shortenString(row.original.id, 20)}
Expand Down

0 comments on commit 5e27e96

Please sign in to comment.