UI: wrap StatusHoverCard with Suspense boundary

This commit is contained in:
Alex Gleason
2023-10-07 22:57:43 -05:00
parent 5c3cebfd3c
commit 78884a4248
2 changed files with 5 additions and 3 deletions

View File

@ -515,7 +515,9 @@ const UI: React.FC<IUI> = ({ children }) => {
<ProfileHoverCard />
</Suspense>
<StatusHoverCard />
<Suspense>
<StatusHoverCard />
</Suspense>
</div>
</div>
</GlobalHotkeys>