Skip to content

Commit

Permalink
[BUG] fix disableWelcomeScreen config
Browse files Browse the repository at this point in the history
disableWelcomeScreen was erroneously removed from being exposed to browser (for testing purposes)
and was not able to pass the config to disable the welcome screen showing.

Issue:
#1138

Signed-off-by: Kawika Avilla <kavilla414@gmail.com>
  • Loading branch information
kavilla committed Jan 13, 2022
1 parent 144eccd commit c84ef6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/home/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { configSchema, ConfigSchema } from '../config';

export const config: PluginConfigDescriptor<ConfigSchema> = {
exposeToBrowser: {
disableWelcomeScreen: false,
disableWelcomeScreen: true,
},
schema: configSchema,
deprecations: ({ renameFromRoot }) => [
Expand Down

0 comments on commit c84ef6f

Please sign in to comment.