Skip to content

Commit

Permalink
fix: Add letter in AvatarNetwork of NetworkFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
gambinish committed Dec 12, 2024
1 parent 0f5f974 commit 563dfa0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ const NetworkFilter = ({ handleClose }: SortControlProps) => {
return allNetworks[chain].name;
});

console.log(currentNetwork);

return (
<>
<SelectableListItem
Expand Down Expand Up @@ -203,7 +205,7 @@ const NetworkFilter = ({ handleClose }: SortControlProps) => {
</Box>
<AvatarNetwork
size={AvatarNetworkSize.Sm}
name="Current"
name={currentNetwork?.nickname || ''}
src={currentNetwork?.rpcPrefs?.imageUrl}
/>
</Box>
Expand Down

0 comments on commit 563dfa0

Please sign in to comment.