Improve upload progress.

This commit is contained in:
Patrick Fic
2025-10-30 16:34:10 -07:00
parent 162f599e2d
commit 8e63ef0d6d
11 changed files with 186 additions and 137 deletions

View File

@@ -1,3 +1,4 @@
import UploadProgress from "@/components/upload-progress/upload-progress";
import { checkUserSession } from "@/redux/user/user.actions";
import { selectBodyshop, selectCurrentUser } from "@/redux/user/user.selectors";
import { ApolloProvider } from "@apollo/client";
@@ -161,6 +162,7 @@ function AppContent({ currentUser, checkUserSession, bodyshop }: any) {
if (currentUser.authorized) {
return (
<ThemedLayout>
<UploadProgress />
<AuthenticatedLayout />
</ThemedLayout>
);