Skip to content

Commit

Permalink
Update appConfig.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
thecalcc authored Oct 5, 2023
1 parent 280af1e commit 0fb638b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/appConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const debugInfo = {
translationsLoaded: false,
};

export let authoringReactEnabledUserSelection = true;
export let authoringReactEnabledUserSelection = (JSON.parse(localStorage.getItem('auth-react') ?? 'false') as boolean);

export function toggleAuthoringReact(enabled: boolean) {
localStorage.setItem('auth-react', JSON.stringify(enabled));
Expand Down

0 comments on commit 0fb638b

Please sign in to comment.