Set wysiwyg editor to enabled by default

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2023-08-22 23:58:03 +02:00
parent 17472cc54c
commit f4368c8d8d
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ const defaultSettings = ImmutableMap({
systemFont: false,
demetricator: false,
wysiwyg: false,
wysiwyg: true,
isDeveloper: false,

View file

@ -28,7 +28,7 @@ const settingsSchema = z.object({
autoloadMore: z.boolean().catch(true),
systemFont: z.boolean().catch(false),
demetricator: z.boolean().catch(false),
wysiwyg: z.boolean().catch(false),
wysiwyg: z.boolean().catch(true),
isDeveloper: z.boolean().catch(false),
});