We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b50d3 commit be8fe0dCopy full SHA for be8fe0d
packages/kit/src/routes/Tab/Navigator.tsx
@@ -23,7 +23,7 @@ const useIsIOSTabNavigatorFocused =
23
const isFocused = useRouteIsFocused();
24
return isFocused;
25
}
26
- : () => false;
+ : () => true;
27
28
export function TabNavigator() {
29
const { freezeOnBlur } = useContext(TabFreezeOnBlurContext);
@@ -40,7 +40,7 @@ export function TabNavigator() {
40
<Portal.Container
41
name={EPortalContainerConstantName.IN_PAGE_TAB_CONTAINER}
42
/>
43
- {isFocused ? (
+ {!isFocused ? (
44
<Stack
45
position="absolute"
46
top={0}
0 commit comments