diff --git a/app/plus/components/PlusVotingPage.tsx b/app/plus/components/PlusVotingPage.tsx index 3f7dc36c8..254ad8725 100644 --- a/app/plus/components/PlusVotingPage.tsx +++ b/app/plus/components/PlusVotingPage.tsx @@ -34,7 +34,7 @@ export default function PlusVotingPage() { if (hasVoted) return ( - + Votes succesfully recorded. Voting ends{" "} {getVotingRange().endDate.toLocaleString()}. diff --git a/utils/plus.ts b/utils/plus.ts index 7d5ffedeb..d2c606d03 100644 --- a/utils/plus.ts +++ b/utils/plus.ts @@ -59,6 +59,5 @@ export const getVotingRange = () => { ? startDate : getThirdFridayDate(true); - //return { startDate, endDate, isHappening, nextVotingDate }; - return { startDate, endDate, isHappening: true, nextVotingDate }; + return { startDate, endDate, isHappening, nextVotingDate }; };