diff --git a/ui/component/app/view.jsx b/ui/component/app/view.jsx index 44bd2c32f..bc34edbf1 100644 --- a/ui/component/app/view.jsx +++ b/ui/component/app/view.jsx @@ -18,6 +18,7 @@ import REWARDS from 'rewards'; import usePersistedState from 'effects/use-persisted-state'; import FileDrop from 'component/fileDrop'; import NagContinueFirstRun from 'component/nagContinueFirstRun'; +import Spinner from 'component/spinner'; // @if TARGET='app' import useZoom from 'effects/use-zoom'; // @endif @@ -294,7 +295,11 @@ function App(props: Props) { // This also prevents the site from loading in the un-authed state while we wait for internal-apis to return for the first time // It's not needed on desktop since there is no un-authed state if (!user) { - return null; + return ( +
+ +
+ ); } // @endif