Skip to content

Commit 1a44296

Browse files
committed
Increase cache treshold
1 parent 6a82061 commit 1a44296

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/app/src/sandbox/eval/cache.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ function shouldSaveOnlineCache(firstRun: boolean, sandboxId: string) {
2525
}
2626

2727
if (!window.__SANDBOX_DATA__) {
28+
// Only enable for 50% of the sandboxes
2829
// TODO remove this check
29-
return sandboxId.charCodeAt(0) < 105;
30+
return sandboxId.charCodeAt(0) < 112;
3031
}
3132

3233
return false;

0 commit comments

Comments
 (0)