From 03365a188c308632e46fb791f193a6bc36c23087 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:06:49 -0700 Subject: [PATCH] Fix showBottomBar --- src/view/com/util/load-latest/LoadLatestBtn.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/com/util/load-latest/LoadLatestBtn.tsx b/src/view/com/util/load-latest/LoadLatestBtn.tsx index bafbe64cbe..3e60b50f0c 100644 --- a/src/view/com/util/load-latest/LoadLatestBtn.tsx +++ b/src/view/com/util/load-latest/LoadLatestBtn.tsx @@ -19,6 +19,7 @@ import {useInteractionState} from '#/components/hooks/useInteractionState' import {ArrowTop_Stroke2_Corner0_Rounded as ArrowIcon} from '#/components/icons/Arrow' import {CENTER_COLUMN_OFFSET} from '#/components/Layout' import {SubtleHover} from '#/components/SubtleHover' +import {IS_NATIVE} from '#/env' export function LoadLatestBtn({ onPress, @@ -46,7 +47,7 @@ export function LoadLatestBtn({ // Adjust height of the fab if we have a session only on mobile web. If we don't have a session, we want to adjust // it on both tablet and mobile since we are showing the bottom bar (see createNativeStackNavigatorWithAuth) - const showBottomBar = hasSession ? !gtMobile : !gtTablet + const showBottomBar = IS_NATIVE || (hasSession ? !gtMobile : !gtTablet) const bottomInset = gtMobile ? a.pb_lg.paddingBottom : a.pb_md.paddingBottom const bottomPosition = gtMobile