Skip to content

Commit

Permalink
fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
danwag06 committed Nov 1, 2024
1 parent 7342db3 commit a45653b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TxHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export const TxHistory = (props: TxHistoryProps) => {
case 'lock':
return 'Lock contract';
default:
return amount === 0 ? 'Self transfer' : amount > 0 ? 'Received' : 'Sent';
return amount === 0 ? 'Transfer' : amount > 0 ? 'Received' : 'Sent';
}
};

Expand Down

0 comments on commit a45653b

Please sign in to comment.