Skip to content

Commit

Permalink
removed loading screen functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Donahue committed May 27, 2022
1 parent 8c51c0d commit 6abcf0a
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/components/FullPageOfflineBlockingView.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ const propTypes = {
/** Child elements */
children: PropTypes.node.isRequired,

/** Used to show the full page loading spinner */
isLoading: PropTypes.bool.isRequired,

/** Props to fetch translation features */
...withLocalizePropTypes,

Expand All @@ -44,10 +41,6 @@ const FullPageOfflineBlockingView = (props) => {
);
}

if (props.isLoading) {
return <FullScreenLoadingIndicator />;
}

return props.children;
};

Expand Down

0 comments on commit 6abcf0a

Please sign in to comment.