Skip to content

Commit

Permalink
Fix button boost behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
kkatusic committed Dec 2, 2024
1 parent 5c2c53d commit a3bf85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/project/ProjectGIVbackToast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const ProjectGIVbackToast = () => {

const handleBoostClick = () => {
if (isSSRMode) return;
if (!isAdminEmailVerified) return;
if (!isEmailVerifiedStatus) return;
if (!isEnabled) {
openConnectModal?.();
} else if (!isSignedIn) {
Expand Down

0 comments on commit a3bf85f

Please sign in to comment.