diff --git a/node-graph/gstd/src/wasm_application_io.rs b/node-graph/gstd/src/wasm_application_io.rs index 987d367054..74620cc6ac 100644 --- a/node-graph/gstd/src/wasm_application_io.rs +++ b/node-graph/gstd/src/wasm_application_io.rs @@ -246,10 +246,10 @@ async fn render<'a: 'n, T: 'n + GraphicElementRendered + WasmNotSend>( let render_params = RenderParams::new(render_config.view_mode, None, false, hide_artboards, for_export); let data = data.eval(ctx.clone()).await; - let editor_api = editor_api.eval(ctx.clone()).await; + let editor_api = editor_api.eval(None).await; #[cfg(all(feature = "vello", target_arch = "wasm32"))] - let surface_handle = _surface_handle.eval(ctx.clone()).await; + let surface_handle = _surface_handle.eval(None).await; let use_vello = editor_api.editor_preferences.use_vello(); #[cfg(all(feature = "vello", target_arch = "wasm32"))] diff --git a/node-graph/interpreted-executor/src/util.rs b/node-graph/interpreted-executor/src/util.rs index 5182b768d9..c0244acecb 100644 --- a/node-graph/interpreted-executor/src/util.rs +++ b/node-graph/interpreted-executor/src/util.rs @@ -39,7 +39,7 @@ pub fn wrap_network_in_scope(mut network: NodeNetwork, editor_api: Arc