aboutsummaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-04-07 14:51:15 -0400
committerIvan Chen <ivan@tagg.id>2021-04-07 14:51:15 -0400
commit8f974b2466d954cdac684d10f44cf7bab930a3ff (patch)
tree83e0ed85f3cff8ca8006a227daf70fadd94b0e30 /src/App.tsx
parentaddafa43ed6767fa012087447fa074b84b314ec4 (diff)
updated api key
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.tsx b/src/App.tsx
index ed1efbce..9510c193 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,6 +3,7 @@ import React, {useState} from 'react';
import {Provider} from 'react-redux';
import {Channel as ChannelType, 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';
import store from './store/configureStore';
@@ -39,7 +40,7 @@ const App = () => {
LocalMessageType,
LocalResponseType,
LocalUserType
- >('3swg9e3kgtam');
+ >(STREAM_CHAT_API);
return (
/**
* This is the provider from the redux store, it acts as the root provider for our application