Skip to content

Commit

Permalink
Fixed that thing where some people can't see their prizes in the vault (
Browse files Browse the repository at this point in the history
  • Loading branch information
tiago-bacelar authored Feb 14, 2023
1 parent 5656aa4 commit 5012bc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layout/Attendee/Vault/Vault.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ function Vault() {

{tab ? (
<div>
{user.redeemables.length != 0 ? (
{user.redeemables.length !== 0 ? (
<Redeemables products={user.redeemables} />
) : (
<StoreEmpty products={products} />
)}
</div>
) : (
<div>
{user.redeemables.length != 0 ? (
{user.prizes.length !== 0 ? (
<Prizes products={user.prizes} />
) : (
<WheelEmpty products={prizes} />
Expand Down

0 comments on commit 5012bc5

Please sign in to comment.