From 281834df3070cfbdfc28314ab2a2e84d321ca5df Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Sat, 07 Mar 2026 14:06:30 +0100
Subject: [PATCH] fix: project picker scroll, reconnect scroll, keyboard dismiss
---
components/chat/InputBar.tsx | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/components/chat/InputBar.tsx b/components/chat/InputBar.tsx
index b002775..2e47666 100644
--- a/components/chat/InputBar.tsx
+++ b/components/chat/InputBar.tsx
@@ -38,6 +38,7 @@
if (!trimmed) return;
onSendText(trimmed);
setText("");
+ Keyboard.dismiss();
}, [text, onSendText]);
if (!isTextMode) {
--
Gitblit v1.3.1