Skip to content

Commit

Permalink
dont run in compatibility mode by default
Browse files Browse the repository at this point in the history
  • Loading branch information
yuri-kiss committed Mar 7, 2025
1 parent 45ed5ac commit d217122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reducers/vm.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {MAXIMUM_CLOUD_VARIABLES} from '../lib/tw-cloud-limits';

const SET_VM = 'scratch-gui/vm/SET_VM';
const defaultVM = new VM();
defaultVM.setCompatibilityMode(true);
defaultVM.setCompatibilityMode(false);
defaultVM.runtime.cloudOptions.limit = MAXIMUM_CLOUD_VARIABLES;
defaultVM.attachStorage(storage);
const initialState = defaultVM;
Expand Down

0 comments on commit d217122

Please sign in to comment.