Skip to content

Commit c3b1c30

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 8a14fcb commit c3b1c30

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/editor/RecoveryButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const RecoveryModal = (props: {
3636
const getNotebookJSON = useEvent(() => {
3737
const notebook = getNotebook();
3838
const cells = notebookCells(notebook);
39-
const notbook: Notebook["NotebookV1"] = {
39+
const notebook: Notebook["NotebookV1"] = {
4040
version: "1",
4141
metadata: {
4242
marimo_version: getMarimoVersion(),
@@ -54,7 +54,7 @@ const RecoveryModal = (props: {
5454
};
5555
}),
5656
};
57-
return JSON.stringify(notbook, null, 2);
57+
return JSON.stringify(notebook, null, 2);
5858
});
5959

6060
// NB: we use markdown class to have sane styling for list, paragraph

0 commit comments

Comments
 (0)