Skip to content

Commit

Permalink
address comment success condition
Browse files Browse the repository at this point in the history
  • Loading branch information
alextaing committed Oct 24, 2023
1 parent 4e6c9b4 commit 9361d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/studio-ui/src/AppWithLazyLoading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function AppWithLazyLoading() {

return (
<LoadingOverlay
loading={!componentsLoaded || !resourcesLoaded}
loading={!(componentsLoaded && stylesLoaded && appLoaded)}
overlay={
<>
{renderComponentLoadingProgress(
Expand Down

0 comments on commit 9361d47

Please sign in to comment.