Remove pesky loading spinner

This commit is contained in:
Ian Philips 2022-07-19 16:41:11 -06:00
parent 2152e5286a
commit 4aface583d

View File

@ -94,15 +94,12 @@ export default function Notifications(props: { user: User }) {
privateUser={privateUser}
cachedNotifications={localNotifications}
/>
) : localNotificationGroups &&
localNotificationGroups.length > 0 ? (
) : (
<div className={'min-h-[100vh]'}>
<RenderNotificationGroups
notificationGroups={localNotificationGroups}
/>
</div>
) : (
<LoadingIndicator />
),
},
{