File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ You will also need to update your applications Podfile to use our fork of Starsc
2020import GenericClient, {
2121 getOrCreateAPIClient ,
2222 getOrCreateWebSocketClient ,
23- } from " react-native-network-client" ;
23+ } from " @mattermost/ react-native-network-client" ;
2424
2525// ...
2626
2727const response = await GenericClient .get (" https://community.mattermost.com" );
28- const { client: apiClient , created } = await getOrCreateAPIClient (
28+ const { client: apiClient , created: apiCreated } = await getOrCreateAPIClient (
2929 " https://community.mattermost.com"
3030);
31- const { client: wsClient , created } = await getOrCreateWebSocketClient (
31+ const { client: wsClient , created: wsCreated } = await getOrCreateWebSocketClient (
3232 " wss://community.mattermost.com"
3333);
3434```
You can’t perform that action at this time.
0 commit comments