Skip to content

Commit 41f8122

Browse files
authored
Merge pull request #853 from auth0/fix/reduce-time-to-unpin-loading-pane
Reducing time to unpin loading pane
2 parents 325c02b + 92d52f7 commit 41f8122

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/loading_screen.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class LoadingPane extends React.Component {
2020
componentDidMount() {
2121
const { model } = this.props;
2222
pinLoadingPane(l.id(model));
23-
setTimeout(() => unpinLoadingPane(l.id(model)), 1200);
23+
setTimeout(() => unpinLoadingPane(l.id(model)), 500);
2424
}
2525

2626
render() {

0 commit comments

Comments
 (0)