From 3b9c1abab40cc8c38d429bc5a58877d7c2a01ee2 Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Fri, 10 Jan 2025 12:23:39 -0800 Subject: [PATCH] adjusting keyboard input on thread --- app/client/mobile/src/conversation/Conversation.tsx | 1 + app/client/mobile/src/session/useSession.hook.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/client/mobile/src/conversation/Conversation.tsx b/app/client/mobile/src/conversation/Conversation.tsx index e429a95b..448a2760 100644 --- a/app/client/mobile/src/conversation/Conversation.tsx +++ b/app/client/mobile/src/conversation/Conversation.tsx @@ -277,6 +277,7 @@ export function Conversation({close, openDetails, wide}: {close: ()=>void, openD actions.setMessage(value)} /> diff --git a/app/client/mobile/src/session/useSession.hook.ts b/app/client/mobile/src/session/useSession.hook.ts index b54ff288..075c9598 100644 --- a/app/client/mobile/src/session/useSession.hook.ts +++ b/app/client/mobile/src/session/useSession.hook.ts @@ -23,7 +23,7 @@ export function useSession() { if (status === 'disconnected') { disconnecting.current = setTimeout(() => { updateState({ disconnected: true }); - }, 2000); + }, 4000); } if (status === 'connected') { clearTimeout(disconnecting.current); updateState({ disconnected: false });