Merge pull request 'Fix images not sending in existing conversations' (#19) from fix/image-in-existing-conversations into main

Reviewed-on: #19
This commit was merged in pull request #19.
This commit is contained in:
2026-04-04 09:08:46 -04:00

View File

@@ -425,6 +425,9 @@ export const ChatScreen = ({ setAuthenticated }: ChatScreenProps) => {
handleQuestionSubmit={handleQuestionSubmit} handleQuestionSubmit={handleQuestionSubmit}
setSimbaMode={setSimbaMode} setSimbaMode={setSimbaMode}
isLoading={isLoading} isLoading={isLoading}
pendingImage={pendingImage}
onImageSelect={(file) => setPendingImage(file)}
onClearImage={() => setPendingImage(null)}
/> />
</div> </div>
</footer> </footer>