Skip to content

Commit

Permalink
fix(runtime-client): disable loading state by default (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
danilowoz committed May 11, 2023
1 parent 8ab934e commit aee0e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sandpack-client/src/clients/runtime/index.ts
Expand Up @@ -242,7 +242,7 @@ export class SandpackRuntime extends SandpackClient {
getTemplate(packageJSON, normalizedModules),
showOpenInCodeSandbox: this.options.showOpenInCodeSandbox ?? true,
showErrorScreen: this.options.showErrorScreen ?? true,
showLoadingScreen: this.options.showLoadingScreen ?? true,
showLoadingScreen: this.options.showLoadingScreen ?? false,
skipEval: this.options.skipEval || false,
clearConsoleDisabled: !this.options.clearConsoleOnFirstCompile,
logLevel: this.options.logLevel ?? SandpackLogLevel.Info,
Expand Down

1 comment on commit aee0e3d

@vercel
Copy link

@vercel vercel bot commented on aee0e3d May 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.