Skip to content

Commit

Permalink
fix: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
fricoben committed Oct 2, 2023
2 parents b724492 + 0dfa966 commit 85ab075
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/[addressOrDomain].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ const AddressOrDomain: NextPage = () => {
...data,
starknet_id: id.toString(),
});
if (hexToDecimal(address) === data.addr) setIsOwner(true);
if (hexToDecimal(address) === hexToDecimal(data.addr))
setIsOwner(true);
setInitProfile(true);
});
})
Expand Down

1 comment on commit 85ab075

@vercel
Copy link

@vercel vercel bot commented on 85ab075 Oct 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.