diff --git a/src/utility/SafeNavigatorView.tsx b/src/utility/SafeNavigatorView.tsx index 2708a22..026207e 100644 --- a/src/utility/SafeNavigatorView.tsx +++ b/src/utility/SafeNavigatorView.tsx @@ -9,7 +9,7 @@ export function useNavigatorPadding() { return { paddingTop: headerHeight, - paddingBottom: index ? 68 : 0 + paddingBottom: index !== undefined ? 68 : 0 }; }