Skip to content

Commit 9006132

Browse files
committed
fix: fix sponsorship button logic
1 parent edbe633 commit 9006132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/Home/components/ActionButtons/ActionButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const ActionButtons: FC<React.PropsWithChildren<unknown>> = () => {
6363
text="🤝 Sponsorship"
6464
target="_self"
6565
link="/sponsorship"
66-
disabled={isBetween(sponsorshipStartDay, sponsorshipEndDay)}
66+
disabled={!isBetween(sponsorshipStartDay, sponsorshipEndDay)}
6767
/>
6868
</StyledActionDiv>
6969
);

0 commit comments

Comments
 (0)