Skip to content

Commit

Permalink
fix message not going away after having said ok
Browse files Browse the repository at this point in the history
  • Loading branch information
LyonSyonII committed Oct 24, 2024
1 parent 713d75f commit 52d6b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/CodeBlock/evaluate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let interpreter: Interpreter | undefined = undefined;

const hasSaidOk = localStorage.getItem("download-interpreter");
if (hasSaidOk || (await toast())) {
// localStorage.setItem("download-interpreter", "true");
localStorage.setItem("download-interpreter", "true");
interpreter = new Interpreter();
interpreter.onAssetDownloaded((a) => {
console.log(`Downloaded "${a}"`);
Expand Down

0 comments on commit 52d6b2e

Please sign in to comment.