From d0254f6da08b4378282b8f0f2955ae3dd39d4063 Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Wed, 15 Jan 2025 21:25:19 -0800 Subject: [PATCH] fixed flicker in android back --- app/client/mobile/src/session/Session.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/client/mobile/src/session/Session.tsx b/app/client/mobile/src/session/Session.tsx index 54a6bcc8..50954d98 100644 --- a/app/client/mobile/src/session/Session.tsx +++ b/app/client/mobile/src/session/Session.tsx @@ -53,7 +53,9 @@ export function Session() { } const contentTab = () => { - setTab('content'); + if (tab !== 'content') { + setTab('content'); + } } useEffect(() => {