We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d916bb commit 366f09aCopy full SHA for 366f09a
1 file changed
packages/webapp/src/pages/index.tsx
@@ -1,14 +1,8 @@
1
import { GetServerSidePropsContext } from 'next'
2
-import { useAuthStore } from '@stores'
3
-import Loading from '@components/ui/Loading'
4
import HomePage from '@components/pages/home/HomePage'
5
import { getHostname } from '../utils'
6
7
function Home({ hostname }: { hostname: string }) {
8
- const authLoading = useAuthStore((state) => state.loading)
9
-
10
- if (authLoading) return <Loading size="lg" />
11
12
return <HomePage hostname={hostname} />
13
}
14
0 commit comments