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:
parent
373d349db7
commit
808a676da6
3 changed files with 2 additions and 3 deletions
|
@ -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();
|
||||
|
|
|
@ -88,7 +88,7 @@ const SignInExperience = () => {
|
|||
return <div>{configError.body.message}</div>;
|
||||
}
|
||||
|
||||
if (configs?.customizeSignInExperience) {
|
||||
if (!configs?.customizeSignInExperience) {
|
||||
return <Welcome />;
|
||||
}
|
||||
|
||||
|
|
|
@ -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(),
|
||||
|
|
Loading…
Add table
Reference in a new issue