diff --git a/app/components/chat.tsx b/app/components/chat.tsx
index ff0bc5b34..a0b0a297a 100644
--- a/app/components/chat.tsx
+++ b/app/components/chat.tsx
@@ -888,7 +888,8 @@ export function Chat() {
           const showActions =
             !isUser &&
             i > 0 &&
-            !(message.preview || message.content.length === 0);
+            !(message.preview || message.content.length === 0) &&
+            i >= context.length; // do not show actions for context prompts
           const showTyping = message.preview || message.streaming;
 
           const shouldShowClearContextDivider = i === clearContextIndex - 1;