voting done

This commit is contained in:
Kalle (Sendou)
2021-03-19 10:23:34 +02:00
parent 4c16006eff
commit a1ab70a32e
2 changed files with 2 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ export default function PlusVotingPage() {
if (hasVoted)
return (
<Alert status="success" variant="subtle">
<Alert status="success" variant="subtle" rounded="lg">
<AlertIcon />
Votes succesfully recorded. Voting ends{" "}
{getVotingRange().endDate.toLocaleString()}.

View File

@@ -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 };
};