Skip to content

Commit 85dd298

Browse files
committed
fix: stability issue with actions
1 parent 740744c commit 85dd298

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

renderer/renderer.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ export const activate: ActivationFunction = (
5151
// Render directly into the provided element
5252
// This ensures VS Code can properly clear/replace outputs
5353
const actions = {
54-
get_notebook: () => ({}),
54+
// TODO: Make get notebook actually get the notebook
55+
get_notebook: () => ({ cell_inputs: {} }),
5556
request_js_link_response: () => {},
5657
update_notebook: () => {},
5758
set_bond: (name: string, value: any) => {

0 commit comments

Comments
 (0)