From 595411388097775972d1ad11382d731710620ab4 Mon Sep 17 00:00:00 2001 From: Shawn Mclean Date: Mon, 6 Jan 2025 09:01:51 -0500 Subject: [PATCH] remove default json on new note --- apps/sovoli.com/src/app/(dashboard)/new/page.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/apps/sovoli.com/src/app/(dashboard)/new/page.tsx b/apps/sovoli.com/src/app/(dashboard)/new/page.tsx index 88a3b851..d9673a07 100644 --- a/apps/sovoli.com/src/app/(dashboard)/new/page.tsx +++ b/apps/sovoli.com/src/app/(dashboard)/new/page.tsx @@ -1,16 +1,9 @@ import { NoteForm } from "./components/NoteForm"; export default function NewPage() { - const json = `{ - "type": "doc", - "content": [ - { - } - ] - }`; return (
- +
); }