You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"failed security check, executor can not be running on these domains"
100
+
"failed security check, executor can not be running on these domains",
98
101
);
99
102
}
100
103
@@ -122,7 +125,7 @@ export async function runModule(
122
125
try{
123
126
executionPromise=mod.factoryFunction.apply(
124
127
undefined,
125
-
argsToCallFunctionWith
128
+
argsToCallFunctionWith,
126
129
);// TODO: what happens with disposers if a rerun of this function is slow / delayed?
127
130
}finally{
128
131
// Hooks are only installed for sync code. Ideally, we'd want to run it for all code, but then we have the chance hooks will affect other parts of the TypeCell (non-user) code
@@ -199,7 +202,7 @@ export async function runModule(
199
202
200
203
if(detectedLoop){
201
204
thrownewError(
202
-
"loop detected (parent run). Are you referencing an exported variable with $ in the same cell?"
205
+
"loop detected (parent run). Are you referencing an exported variable with $ in the same cell?",
0 commit comments