From a2a294bc4c5a3c9e3ebe3632ed20fbd4e60f6e67 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 16 Oct 2022 22:40:17 -0700 Subject: [PATCH] No longer lazy load followers --- web/components/ui/Content/Content.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/web/components/ui/Content/Content.tsx b/web/components/ui/Content/Content.tsx index 9208d216e..9595de5e5 100644 --- a/web/components/ui/Content/Content.tsx +++ b/web/components/ui/Content/Content.tsx @@ -33,6 +33,7 @@ import { ContentHeader } from '../../common/ContentHeader/ContentHeader'; import { ServerStatus } from '../../../interfaces/server-status.model'; import { Statusbar } from '../Statusbar/Statusbar'; import { ChatMessage } from '../../../interfaces/chat-message.model'; +import { FollowerCollection } from '../followers/FollowerCollection/FollowerCollection'; const { Content: AntContent } = Layout; @@ -48,10 +49,6 @@ const NotifyReminderPopup = dynamic(() => import('../NotifyReminderPopup/NotifyReminderPopup').then(mod => mod.NotifyReminderPopup), ); -const FollowerCollection = dynamic(() => - import('../followers/FollowerCollection/FollowerCollection').then(mod => mod.FollowerCollection), -); - // We only need to load the chat container here if we're in mobile or narrow // windows, so lazy loading it makes sense. const ChatContainer = dynamic(() =>