diff --git a/CHANGELOG.md b/CHANGELOG.md index 98ae36b9..c6cd1d1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,17 @@ and this project adheres to ## [Unreleased] +### Changed + +- ♿️(frontend) structure correctly 5xx error alerts #2128 +- ♿️(frontend) make doc search result labels uniquely identifiable #2212 + ### Fixed - 🚸(frontend) redirect on current url tab after 401 #2197 - 🐛(frontend) abort check media status unmount #2194 - ✨(backend) order pinned documents by last updated at #2028 - -### Changed - -- ♿️(frontend) structure correctly 5xx error alerts #2128 -- ♿️(frontend) make doc search result labels uniquely identifiable #2212 +- 🐛(frontend) fix app shalow reload #2231 ## [v4.8.6] - 2026-04-08 diff --git a/src/frontend/apps/impress/src/features/auth/components/Auth.tsx b/src/frontend/apps/impress/src/features/auth/components/Auth.tsx index 178474ab..6987a334 100644 --- a/src/frontend/apps/impress/src/features/auth/components/Auth.tsx +++ b/src/frontend/apps/impress/src/features/auth/components/Auth.tsx @@ -20,7 +20,6 @@ export const Auth = ({ children }: PropsWithChildren) => { const { isLoading: isAuthLoading, pathAllowed, - isFetchedAfterMount, authenticated, fetchStatus, user, @@ -104,10 +103,7 @@ export const Auth = ({ children }: PropsWithChildren) => { ]); const shouldShowLoader = - (isLoading && !isFetchedAfterMount) || - isRedirecting || - (!authenticated && !pathAllowed) || - shouldTrySilentLogin; + isRedirecting || (!authenticated && !pathAllowed) || shouldTrySilentLogin; if (shouldShowLoader) { return ;