Skip to content

Commit

Permalink
remove default json on new note
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnmclean committed Jan 6, 2025
1 parent befa9d5 commit 5954113
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions apps/sovoli.com/src/app/(dashboard)/new/page.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
import { NoteForm } from "./components/NoteForm";

export default function NewPage() {
const json = `{
"type": "doc",
"content": [
{
}
]
}`;
return (
<div className="mx-auto max-w-7xl p-4">
<NoteForm title="" description="" content={json} />
<NoteForm title="" description="" />
</div>
);
}

0 comments on commit 5954113

Please sign in to comment.