diff options
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/App.tsx b/src/App.tsx index b8d64461..217f0627 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,7 +2,6 @@ import {NavigationContainer} from '@react-navigation/native'; import React, {useState} from 'react'; import {Provider} from 'react-redux'; import {StreamChat} from 'stream-chat'; -import {OverlayProvider} from 'stream-chat-react-native'; import {STREAM_CHAT_API} from './constants'; import {navigationRef} from './RootNavigation'; import Routes from './routes'; @@ -39,9 +38,7 @@ const App = () => { <Provider store={store}> <NavigationContainer ref={navigationRef}> <ChatContext.Provider value={{channel, setChannel, chatClient}}> - <OverlayProvider> - <Routes /> - </OverlayProvider> + <Routes /> </ChatContext.Provider> </NavigationContainer> </Provider> |