0
Fork 0
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:
Charles Zhao 2022-09-10 12:24:12 +08:00
parent d2e10ad896
commit cdbd8d7344
No known key found for this signature in database
GPG key ID: 4858774754C92DF2

View file

@ -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();