From 06b8fd651ff640cc0dd601190e05864c332997a5 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Sun, 27 Oct 2024 19:50:01 +0200 Subject: [PATCH] Hide results --- src/utils/visibility.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/visibility.js b/src/utils/visibility.js index 4a67ccd..87e260a 100644 --- a/src/utils/visibility.js +++ b/src/utils/visibility.js @@ -12,6 +12,7 @@ export const shouldShowOfficialStreaming = hasElectionDayEnded // Only show results, when they are available and after election day end export const shouldShowResults = (results, meta) => { + return false if (!results) return false return results.length > 0 && shouldAllowSendingProtocols(meta)