aboutsummaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-05-24 14:03:32 -0700
committerShravya Ramesh <shravs1208@gmail.com>2021-05-24 14:03:32 -0700
commite09f37e73b45a58c0a6ebf8ad8b5216c91713f26 (patch)
tree73fc1435227e418be15480ca9b12d865dcb0f8a2 /src/App.tsx
parent5afdf9208fd3d7498a2595797e6c9fb5f567fc61 (diff)
Fix yarn lint issues
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/App.tsx b/src/App.tsx
index 64f40bae..92e7abee 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -27,15 +27,16 @@ export const ChatContext = React.createContext({} as ChatContextType);
const App = () => {
const routeNameRef = useRef();
const [channel, setChannel] = useState<ChannelGroupedType>();
- const chatClient = StreamChat.getInstance<
- LocalAttachmentType,
- LocalChannelType,
- LocalCommandType,
- LocalEventType,
- LocalMessageType,
- LocalResponseType,
- LocalUserType
- >(STREAM_CHAT_API);
+ const chatClient =
+ StreamChat.getInstance<
+ LocalAttachmentType,
+ LocalChannelType,
+ LocalCommandType,
+ LocalEventType,
+ LocalMessageType,
+ LocalResponseType,
+ LocalUserType
+ >(STREAM_CHAT_API);
return (
<Provider store={store}>
<NavigationContainer