aboutsummaryrefslogtreecommitdiff
path: root/src/screens/chat
diff options
context:
space:
mode:
authorankit-thanekar007 <ankit.thanekar007@gmail.com>2021-05-03 10:23:01 -0700
committerankit-thanekar007 <ankit.thanekar007@gmail.com>2021-05-03 10:23:01 -0700
commitef2c8f57971b6ca55a6a3ef58609b0c80fe55869 (patch)
tree1c5d98fee8a25734a1d39141963005e3898222a9 /src/screens/chat
parent840e144e48fe90b33ce9ab713ca02a696887b8ea (diff)
tma-822-base UI changes
Diffstat (limited to 'src/screens/chat')
-rw-r--r--src/screens/chat/ChatListScreen.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/chat/ChatListScreen.tsx b/src/screens/chat/ChatListScreen.tsx
index 810ebdb2..1df5c2da 100644
--- a/src/screens/chat/ChatListScreen.tsx
+++ b/src/screens/chat/ChatListScreen.tsx
@@ -9,7 +9,7 @@ import {TabsGradient} from '../../components';
import {ChannelPreview, MessagesHeader} from '../../components/messages';
import {MainStackParams} from '../../routes';
import {RootState} from '../../store/rootReducer';
-import EmptyNotificationView from '../../screens/main/notification/EmptyNotificationView';
+import EmptyContentView from '../../components/common/EmptyContentView';
import {
LocalAttachmentType,
LocalChannelType,
@@ -101,7 +101,7 @@ const ChatListScreen: React.FC<ChatListScreenProps> = () => {
maxUnreadCount={99}
Preview={ChannelPreview}
EmptyStateIndicator={() => {
- return <EmptyNotificationView viewType={'ChatList'} />;
+ return <EmptyContentView viewType={'ChatList'} />;
}}
/>
</View>