Skip to content

Commit

Permalink
eas
Browse files Browse the repository at this point in the history
  • Loading branch information
Seroxdesign committed Apr 29, 2024
1 parent 48b0d90 commit ca15da5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/web/components/Player/Section/Attestations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,9 @@ export const Attestations: React.FC<{ player: Player }> = ({ player }) => {
}
};

console.log(player?.ethereumAddress, address, player?.ethereumAddress.toLocaleLowerCase() != address?.toLocaleLowerCase())

return (
<div>
{player?.ethereumAddress.toLocaleLowerCase == address?.toLocaleLowerCase && (
{player?.ethereumAddress.toLocaleLowerCase === address?.toLocaleLowerCase && (
<div>
<h3>Your Attestations: ({attestations?.length})</h3>
<VStack mt={4} mb={4} w="full">
Expand Down

0 comments on commit ca15da5

Please sign in to comment.