diff options
-rw-r--r-- | components/gameBar.tsx | 2 | ||||
-rw-r--r-- | components/navbar.tsx | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/components/gameBar.tsx b/components/gameBar.tsx index f26201c..67712e2 100644 --- a/components/gameBar.tsx +++ b/components/gameBar.tsx @@ -71,8 +71,6 @@ export function GameBar(props: { <div style={{ ...GameBarAlignStyle, float: "right" }}> <GameBarModule> <SettingsRoundedIcon/> - <Bubble> - </Bubble> </GameBarModule> <GameBarSpacer/> <GameBarModule> diff --git a/components/navbar.tsx b/components/navbar.tsx index 635be86..ee00f0a 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -151,7 +151,7 @@ export function NavBar() { url: `/api/social/list/requests` }); setFriendRequests(friendRequestsReq.data.requests); - setGotNotifications(true); + setGotNotifications(gotNotifications || friendRequestsReq.data.requests.length > 0); } setGotData(true); |