mirror of
https://github.com/logto-io/logto.git
synced 2025-04-07 23:01:25 -05:00
fix(console): old value does not flash back on saving form
This commit is contained in:
parent
d2e10ad896
commit
cdbd8d7344
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ const AppContent = () => {
|
|||
const href = useHref('/callback');
|
||||
const { isLoading: isPreferencesLoading } = useUserPreferences();
|
||||
const { isLoading: isSettingsLoading } = useSettings();
|
||||
const isLoading = isLogtoLoading || isPreferencesLoading || isSettingsLoading;
|
||||
const isLoading = isPreferencesLoading || isSettingsLoading;
|
||||
|
||||
const location = useLocation();
|
||||
const navigate = useNavigate();
|
||||
|
|
Loading…
Add table
Reference in a new issue