From 2c51054ae4189e98336c7fad77f047301b2b8852 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 7 Feb 2022 12:20:03 -0600 Subject: [PATCH] UI: actually, don't wait for the streaming URL to render --- app/soapbox/features/ui/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/soapbox/features/ui/index.js b/app/soapbox/features/ui/index.js index bfcfdb3cd..1e0ed2d51 100644 --- a/app/soapbox/features/ui/index.js +++ b/app/soapbox/features/ui/index.js @@ -670,14 +670,12 @@ class UI extends React.PureComponent { } render() { - const { streamingUrl, features, soapbox } = this.props; + const { features, soapbox } = this.props; const { draggingOver, mobile } = this.state; const { intl, children, location, dropdownMenuIsOpen, me } = this.props; // Wait for login to succeed or fail if (me === null) return null; - // If login didn't fail, wait for streaming to become available - if (me !== false && !streamingUrl) return null; const handlers = me ? { help: this.handleHotkeyToggleHelp,