mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
fix(console): mutate data after sie welcome done (#1447)
This commit is contained in:
parent
d293de0d03
commit
33106aac93
1 changed files with 8 additions and 1 deletions
|
@ -99,7 +99,14 @@ const SignInExperience = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!settings?.signInExperienceCustomized) {
|
if (!settings?.signInExperienceCustomized) {
|
||||||
return <Welcome mutate={mutateSettings} />;
|
return (
|
||||||
|
<Welcome
|
||||||
|
mutate={() => {
|
||||||
|
void mutateSettings();
|
||||||
|
void mutate();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue