nicolium: disable new option by default

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-04-07 15:22:47 +00:00
parent 29a4dd1587
commit 157836749c

View File

@@ -117,7 +117,7 @@ const frontendConfigSchemaShape = {
*/
mediaPreview: v.fallback(v.boolean(), false),
sentryDsn: v.fallback(v.optional(v.string()), undefined),
allowDisplayingRemoteNoLogin: v.fallback(v.boolean(), false),
allowDisplayingRemoteNoLogin: v.fallback(v.boolean(), true),
};
const frontendConfigSchema = coerceObject(frontendConfigSchemaShape);