Skip to content

Commit

Permalink
Merge pull request #2383 from dev-protocol/bug/claim-invitation-button
Browse files Browse the repository at this point in the history
fixes claim invitation bug
  • Loading branch information
stuartwk authored May 8, 2024
2 parents 9f1de0b + 7615084 commit f92f02c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clubs",
"version": "0.16.0-beta.3",
"version": "0.16.0-beta.4",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/invitations/components/ClaimButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
console.error('Failed to check availability', available)
errorMsg = 'Failed to check availability'
} else {
isClaimed = available === true
isClaimed = !available
}
}
Expand Down

0 comments on commit f92f02c

Please sign in to comment.