Skip to content

Commit

Permalink
Implemented all cases of member status
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukman-01 committed Oct 31, 2024
1 parent 9f507df commit 6f83872
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,11 @@ const Home = () => {
</div>

<StatusSection
connectedAddress={connectedAddress!}
isAllowListed={isAllowListed!}
connectedAddress={connectedAddress as string}
isAllowListed={isAllowListed as boolean}
isCheckedIn={isCheckedIn as boolean}
userContractAddress={userContractAddress!}
isLoading={isLoading!}
userContractAddress={userContractAddress as string}
isLoading={isLoading as boolean}
/>
</div>
)}
Expand Down

0 comments on commit 6f83872

Please sign in to comment.