Skip to content

Commit

Permalink
fix(connect-kit): use-claim-csb-status edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
runjuu committed Mar 3, 2023
1 parent 91e8de4 commit c98b6f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function useClaimCSBStatus(): UseClaimCSBStatusResult {
if (addressInfo?.eligible) {
return [true, ""];
} else {
return [true, "Sorry, you're not eligible to claim"];
return [false, "Sorry, you're not eligible to claim"];
}
})();

Expand Down

0 comments on commit c98b6f4

Please sign in to comment.