Skip to content

Commit

Permalink
Merge pull request #70 from akiraonstarknet/og-nft-backend
Browse files Browse the repository at this point in the history
OG NFT UI: fix claim fetch issue
  • Loading branch information
akiraonstarknet authored Sep 20, 2024
2 parents 3e79282 + d6040c0 commit 521316f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/community/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ interface OGNFTUserData {

const isOGNFTEligibleAtom = atomWithQuery((get) => {
return {
queryKey: ['isOGNFTEligibleAtom'],
queryKey: ['isOGNFTEligibleAtom', get(addressAtom)],
queryFn: async ({ _queryKey }: any): Promise<OGNFTUserData | null> => {
const address = get(addressAtom) || '0x0';
if (!address) return null;
Expand Down

0 comments on commit 521316f

Please sign in to comment.