diff --git a/apps/client/src/views/timer/timer.utils.ts b/apps/client/src/views/timer/timer.utils.ts index de052fad7..1add32d88 100644 --- a/apps/client/src/views/timer/timer.utils.ts +++ b/apps/client/src/views/timer/timer.utils.ts @@ -181,10 +181,10 @@ export function getCardData( : getPropertyValue(eventNow, secondarySource, entries); return { - showNow: mainSource !== 'none' || Boolean(nowSecondary), + showNow: mainSource !== 'none' && (Boolean(nowMain) || Boolean(nowSecondary)), nowMain, nowSecondary, - showNext: mainSource !== 'none' || Boolean(nextSecondary), + showNext: mainSource !== 'none' && (Boolean(nextMain) || Boolean(nextSecondary)), nextMain, nextSecondary, };