From cdbd8d7344ad22bfc10219f732e718f437cb0668 Mon Sep 17 00:00:00 2001 From: Charles Zhao Date: Sat, 10 Sep 2022 12:24:12 +0800 Subject: [PATCH] fix(console): old value does not flash back on saving form --- packages/console/src/components/AppContent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console/src/components/AppContent/index.tsx b/packages/console/src/components/AppContent/index.tsx index fd13ee52c..78b34b1fe 100644 --- a/packages/console/src/components/AppContent/index.tsx +++ b/packages/console/src/components/AppContent/index.tsx @@ -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();