0

No longer lazy load followers

This commit is contained in:
Gabe Kangas 2022-10-16 22:40:17 -07:00
parent ab573f67e9
commit a2a294bc4c
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -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(() =>