diff --git a/src/components/Queue/ChatTimeline.tsx b/src/components/Queue/ChatTimeline.tsx
index 6db910f..4daf344 100644
--- a/src/components/Queue/ChatTimeline.tsx
+++ b/src/components/Queue/ChatTimeline.tsx
@@ -59,13 +59,15 @@ const QueueChatTimeline = ({ queue }: Object) => {
>
logs
- {" - "}
- restartTask("chat_download")}
- >
- restart
-
+ {!queue.live_archive && (
+ {" - "}
+ restartTask("chat_download")}
+ >
+ restart
+
+ )}
diff --git a/src/components/Queue/VideoTimeline.tsx b/src/components/Queue/VideoTimeline.tsx
index ae46f66..e457ac1 100644
--- a/src/components/Queue/VideoTimeline.tsx
+++ b/src/components/Queue/VideoTimeline.tsx
@@ -53,13 +53,16 @@ const QueueVideoTimeline = ({ queue }: Object) => {
>
logs
- {" - "}
- restartTask("video_download")}
- >
- restart
-
+ {!queue.live_archive && (
+ {" - "}
+ restartTask("video_download")}
+ >
+ restart
+
+ )}
+