Skip to content

Commit

Permalink
from > to
Browse files Browse the repository at this point in the history
  • Loading branch information
ziad-saab committed Sep 17, 2024
1 parent 353cc2a commit 4e435bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snaps/features/custom-ui/user-defined-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,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>
</Box>
);
Expand Down

0 comments on commit 4e435bd

Please sign in to comment.