diff --git a/web/components/ui/Content/Content.tsx b/web/components/ui/Content/Content.tsx
index bcb142f34..50d7f659d 100644
--- a/web/components/ui/Content/Content.tsx
+++ b/web/components/ui/Content/Content.tsx
@@ -54,6 +54,7 @@ const FollowModal = dynamic(
() => import('../../modals/FollowModal/FollowModal').then(mod => mod.FollowModal),
{
ssr: false,
+ loading: () => ,
},
);
@@ -64,6 +65,7 @@ const BrowserNotifyModal = dynamic(
),
{
ssr: false,
+ loading: () => ,
},
);
@@ -71,6 +73,7 @@ const NotifyReminderPopup = dynamic(
() => import('../NotifyReminderPopup/NotifyReminderPopup').then(mod => mod.NotifyReminderPopup),
{
ssr: false,
+ loading: () => ,
},
);