From 2a097d0cdfba1b10677dc802871cb6f366150784 Mon Sep 17 00:00:00 2001 From: weishu Date: Thu, 18 Dec 2025 19:05:01 +0800 Subject: [PATCH] fix(web): prevent Android Chrome keyboard overlap --- web/index.html | 2 +- web/src/App.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/index.html b/web/index.html index 7126104d..3b67a0cd 100644 --- a/web/index.html +++ b/web/index.html @@ -4,7 +4,7 @@ diff --git a/web/src/App.tsx b/web/src/App.tsx index 37c2148d..54f2004a 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -123,7 +123,7 @@ function mergeMessages(existing: DecryptedMessage[], incoming: DecryptedMessage[ } export function App() { - const { authSource, isLoading: isAuthSourceLoading, isTelegram, setAccessToken, clearAuth } = useAuthSource() + const { authSource, isLoading: isAuthSourceLoading, setAccessToken } = useAuthSource() const { token, api, isLoading: isAuthLoading, error: authError, user } = useAuth(authSource) const { haptic } = usePlatform()