diff --git a/packages/react/src/components/video/VideoCardCountdownToLive.tsx b/packages/react/src/components/video/VideoCardCountdownToLive.tsx
index 226279582..2cc48047a 100644
--- a/packages/react/src/components/video/VideoCardCountdownToLive.tsx
+++ b/packages/react/src/components/video/VideoCardCountdownToLive.tsx
@@ -150,21 +150,14 @@ export function VideoCardCountdownToLive({
// Handle missing videos
if (video.status === "missing") {
- if (video.start_actual) {
- const tick = dayjs(video.start_actual);
- return (
-
-
- Streamed at {tick.format("LLL")}
-
+ if (video.start_actual || video.start_scheduled || video.available_at) {
+ const tick = dayjs(
+ video.start_actual || video.start_scheduled || video.available_at,
);
- }
- if (video.start_scheduled) {
- const tick = dayjs(video.start_scheduled);
return (
-
+
- Scheduled for {tick.format("LLL")}
+ {tick.format("LLL")}
);
}