Skip to content

Commit

Permalink
Update src/pages/ChatFinderPage/index.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Gandalf <[email protected]>
  • Loading branch information
hannojg and allgandalf authored Sep 27, 2024
1 parent b331193 commit 18de46d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pages/ChatFinderPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ function ChatFinderPage({navigation}: ChatFinderPageProps) {
const offlineMessage: string = isOffline ? `${translate('common.youAppearToBeOffline')} ${translate('search.resultsAreLimited')}` : '';

const [betas] = useOnyx(ONYXKEYS.BETAS);
const [isSearchingForReports] = useOnyx(ONYXKEYS.IS_SEARCHING_FOR_REPORTS, {
initWithStoredValues: false,
});
const [isSearchingForReports] = useOnyx(ONYXKEYS.IS_SEARCHING_FOR_REPORTS, {initWithStoredValues: false});

const [searchValue, debouncedSearchValue, setSearchValue] = useDebouncedState('');
const [, debouncedSearchValueInServer, setSearchValueInServer] = useDebouncedState('', 500);
Expand Down

0 comments on commit 18de46d

Please sign in to comment.