Disable the search screen (#6388)

This commit is contained in:
Jason Frerich 2022-06-15 08:39:47 -05:00 committed by GitHub
parent 196f922b6a
commit b52b0c26b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,9 +20,10 @@ import Account from './account';
import ChannelList from './channel_list';
import RecentMentions from './recent_mentions';
import SavedMessages from './saved_messages';
import Search from './search';
import TabBar from './tab_bar';
// import Search from './search';
import type {LaunchProps} from '@typings/launch';
if (Platform.OS === 'ios') {
@ -117,11 +118,11 @@ export default function HomeScreen(props: HomeProps) {
>
{() => <ChannelList {...props}/>}
</Tab.Screen>
<Tab.Screen
{/* <Tab.Screen
name={Screens.SEARCH}
component={Search}
options={{unmountOnBlur: false, lazy: true, tabBarTestID: 'tab_bar.search.tab'}}
/>
/> */}
<Tab.Screen
name={Screens.MENTIONS}
component={RecentMentions}