diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-04-20 15:36:37 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-04-20 15:36:37 -0700 |
commit | ebb59d9632d76b133f226925bbf611df09c7419b (patch) | |
tree | c27bdf7b63306780fd2e94d2972746f99e118b25 /src | |
parent | b1ba54b0971a2e089e7e132ceb5dfd5257356f44 (diff) |
removed unused imports
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/chat/ChatScreen.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/screens/chat/ChatScreen.tsx b/src/screens/chat/ChatScreen.tsx index af731d8e..57f2232e 100644 --- a/src/screens/chat/ChatScreen.tsx +++ b/src/screens/chat/ChatScreen.tsx @@ -1,7 +1,7 @@ import {useBottomTabBarHeight} from '@react-navigation/bottom-tabs'; import {StackNavigationProp} from '@react-navigation/stack'; import React, {useContext, useEffect} from 'react'; -import {StyleSheet, Text, View, Image} from 'react-native'; +import {StyleSheet} from 'react-native'; import {SafeAreaView, useSafeAreaInsets} from 'react-native-safe-area-context'; import { Channel, @@ -12,7 +12,6 @@ import { useAttachmentPickerContext, Theme, } from 'stream-chat-react-native'; -import moment from 'moment'; import {ChatContext} from '../../App'; import { ChatHeader, |