From deaf7f4f8d60dde9105c1253a64bb34a5c347d24 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:39:02 -0700 Subject: [PATCH] Tablet tweak --- 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 ae0ec1568c..a072a56924 100644 --- a/src/view/com/util/load-latest/LoadLatestBtn.tsx +++ b/src/view/com/util/load-latest/LoadLatestBtn.tsx @@ -53,7 +53,8 @@ export function LoadLatestBtn({ const isMobileWeb = IS_WEB && !gtMobile const bottomInset = gtMobile ? a.pb_lg.paddingBottom : a.pb_md.paddingBottom const bottomGutter = isMobileWeb ? a.pb_lg.paddingBottom : bottomInset - const shouldAccountForBottomBar = !gtMobile || (isTablet && showBottomBar) + const shouldAccountForBottomBar = + IS_NATIVE || !gtMobile || (isTablet && showBottomBar) const bottomPosition = { bottom: shouldAccountForBottomBar ? clamp(insets.bottom, bottomInset, 60) + bottomGutter