We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d525a9 commit 6f3b197Copy full SHA for 6f3b197
src/lib/project-fetcher-hoc.jsx
@@ -115,9 +115,10 @@ const ProjectFetcherHOC = function (WrappedComponent) {
115
this.props.vm.stop();
116
117
// pm: clear url params when fetching if the project ID is 'default'
118
- if (projectId == 0 || projectId === null) {
+ if (loadingState === LoadingStates.LOADING_VM_NEW_DEFAULT && (projectId == 0 || projectId === null)) {
119
const path = window.location.pathname + window.location.hash;
120
window.history.replaceState({}, document.title, path);
121
+ this.props.vm.setFramerate(30);
122
this.props.vm.setRuntimeOptions({
123
dangerousOptimizations: false,
124
disableOffscreenRendering: false,
0 commit comments