Skip to content

Commit

Permalink
[1.x][BUG] fix disableWelcomeScreen config (#1143) (#1170)
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

Backport PR:
#1143

Signed-off-by: Kawika Avilla <[email protected]>
  • Loading branch information
kavilla authored Feb 1, 2022
1 parent f21558c commit b82f214
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 b82f214

Please sign in to comment.