Staging fixes #134

Merged
enes merged 5 commits from fix-staging-worker-desc-spin into staging 2024-08-08 11:04:34 +00:00
Showing only changes of commit 5015cefe98 - Show all commits

View File

@ -136,7 +136,7 @@ export const MainLayout = () => {
}
setIsLoading(true)
setLoadingSpinnerDesc(`Loading SIGit History`)
setLoadingSpinnerDesc(`Loading SIGit history...`)
getUsersAppData()
.then((appData) => {
if (appData) {
@ -145,7 +145,7 @@ export const MainLayout = () => {
})
.finally(() => setIsLoading(false))
}
}, [authState])
}, [authState, dispatch])
if (isLoading) return <LoadingSpinner desc={loadingSpinnerDesc} />