From b6576fb2fd234d31d39d1e609c08d5ebfd234242 Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Sat, 4 Apr 2026 09:07:21 -0400 Subject: [PATCH] Fix images not sending in existing conversations Add missing pendingImage, onImageSelect, and onClearImage props to the MessageInput rendered in the active chat footer, matching the homepage version. Co-Authored-By: Claude Opus 4.6 --- raggr-frontend/src/components/ChatScreen.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/raggr-frontend/src/components/ChatScreen.tsx b/raggr-frontend/src/components/ChatScreen.tsx index b1c6216..57ac902 100644 --- a/raggr-frontend/src/components/ChatScreen.tsx +++ b/raggr-frontend/src/components/ChatScreen.tsx @@ -425,6 +425,9 @@ export const ChatScreen = ({ setAuthenticated }: ChatScreenProps) => { handleQuestionSubmit={handleQuestionSubmit} setSimbaMode={setSimbaMode} isLoading={isLoading} + pendingImage={pendingImage} + onImageSelect={(file) => setPendingImage(file)} + onClearImage={() => setPendingImage(null)} /> -- 2.49.1