Skip to content

Commit

Permalink
Fix from > to
Browse files Browse the repository at this point in the history
  • Loading branch information
ziad-saab authored Sep 17, 2024
1 parent 44c5701 commit d3befbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Insight: SnapComponent<InsightProps> = ({ from, to }) => {
<Address address={from as `0x${string}`} />
</Row>
<Row label="To">
{to ? <Address address={from as `0x${string}`} /> : <Text>None</Text>}
{to ? <Address address={to as `0x${string}`} /> : <Text>None</Text>}
</Row>
<Button name="transaction-type">See transaction type</Button>
</Box>
Expand Down

0 comments on commit d3befbd

Please sign in to comment.