0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): align usage of customizeSignInExperience (#837)

This commit is contained in:
Wang Sijie 2022-05-17 10:10:54 +08:00 committed by GitHub
parent 373d349db7
commit 808a676da6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View file

@ -63,7 +63,7 @@ const GuideModal = ({ isOpen, onClose }: Props) => {
api.patch('/api/sign-in-exp', {
json: signInExperienceParser.toRemoteModel(formData),
}),
updateConfigs({ experienceGuideDone: true }),
updateConfigs({ customizeSignInExperience: true }),
]);
location.reload();

View file

@ -88,7 +88,7 @@ const SignInExperience = () => {
return <div>{configError.body.message}</div>;
}
if (configs?.customizeSignInExperience) {
if (!configs?.customizeSignInExperience) {
return <Welcome />;
}

View file

@ -144,7 +144,6 @@ export const adminConsoleConfigGuard = z.object({
language: z.nativeEnum(Language),
appearanceMode: z.nativeEnum(AppearanceMode),
experienceNoticeConfirmed: z.boolean().optional(),
experienceGuideDone: z.boolean().optional(),
hideGetStarted: z.boolean().optional(),
// Get started challenges
checkDemo: z.boolean(),