We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa942c0 commit 10e2743Copy full SHA for 10e2743
src/components/codecell.tsx
@@ -41,7 +41,7 @@ export default function CodeCell({ cellId, appName, code = "print('Hello AO!')",
41
if (e.data.action == "set_process" && e.data.appname == appName) {
42
console.log('set_process', appName, e.data.process)
43
const ids = JSON.parse(sessionStorage.getItem("cell-ids") || "{}");
44
- if(ids[appName]) return;
+ // if(ids[appName]) return;
45
46
if (!e.data.process) return;
47
onAOProcess(e.data.process);
0 commit comments