Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/Search/SearchPageNarrow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function SearchPageNarrow({queryJSON, policyID, searchName, headerButtonsOptions
const {windowHeight} = useWindowDimensions();
const styles = useThemeStyles();
const StyleUtils = useStyleUtils();
const [selectionMode] = useOnyx(ONYXKEYS.MOBILE_SELECTION_MODE);
const [selectionMode] = useOnyx(ONYXKEYS.MOBILE_SELECTION_MODE, {canBeMissing: true});
const {clearSelectedTransactions} = useSearchContext();
const [searchRouterListVisible, setSearchRouterListVisible] = useState(false);
const {canUseLeftHandBar} = usePermissions();
Expand Down Expand Up @@ -145,7 +145,7 @@ function SearchPageNarrow({queryJSON, policyID, searchName, headerButtonsOptions
testID={SearchPageNarrow.displayName}
shouldEnableMaxHeight
offlineIndicatorStyle={styles.mtAuto}
extraContent={!searchRouterListVisible && <NavigationTabBar selectedTab={NAVIGATION_TABS.SEARCH} />}
extraContent={<NavigationTabBar selectedTab={NAVIGATION_TABS.SEARCH} />}
headerGapStyles={styles.searchHeaderGap}
shouldShowOfflineIndicator={!!searchResults}
>
Expand Down