UI: wrap SidebarMenu with Suspense
Fixes https://gitlab.com/soapbox-pub/soapbox/-/issues/1562
This commit is contained in:
parent
d0170dc449
commit
645aa494f5
1 changed files with 3 additions and 1 deletions
|
@ -500,7 +500,9 @@ const UI: React.FC<IUI> = ({ children }) => {
|
|||
)}
|
||||
|
||||
{me && (
|
||||
<SidebarMenu />
|
||||
<Suspense>
|
||||
<SidebarMenu />
|
||||
</Suspense>
|
||||
)}
|
||||
|
||||
{me && features.chats && (
|
||||
|
|
Loading…
Reference in a new issue