From 4b4a399e8031d4e912ae6b0b158a983c2e95bde1 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Sun, 9 Jun 2024 20:58:37 +0300 Subject: [PATCH] Fix check for straming timestamp --- src/utils/visibility.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/utils/visibility.js b/src/utils/visibility.js index 88414e8..4a67ccd 100644 --- a/src/utils/visibility.js +++ b/src/utils/visibility.js @@ -8,8 +8,7 @@ const hasElectionDayEnded = (meta) => { export const shouldAllowSendingProtocols = (meta) => hasElectionDayEnded(meta) -export const shouldShowOfficialStreaming = (results, meta) => - hasElectionDayEnded(meta) +export const shouldShowOfficialStreaming = hasElectionDayEnded // Only show results, when they are available and after election day end export const shouldShowResults = (results, meta) => {