💄(frontend) force light theme on BlockNote editor

The BlockNote editor theme was not being forced to
light mode. Depend the user theme preference,
the blocknote theme could be dark.
We force it to light mode.
This commit is contained in:
Anthony LC
2024-07-15 10:28:43 +02:00
committed by Anthony LC
parent 839b78a6d0
commit 0f71a3fcfa

View File

@@ -78,6 +78,7 @@ export const BlockNoteContent = ({ doc, provider }: BlockNoteContentProps) => {
editor={editor}
formattingToolbar={false}
editable={doc.abilities.partial_update}
theme="light"
>
<BlockNoteToolbar />
</BlockNoteView>