Skip to content

Commit 7e98ca8

Browse files
committed
Refactor loader
1 parent 6505039 commit 7e98ca8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/pages/GroupsPage/GroupPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { useMachine } from "@xstate/react"
99
import { User } from "api/typesGenerated"
1010
import { AvatarData } from "components/AvatarData/AvatarData"
1111
import { ChooseOne, Cond } from "components/Conditionals/ChooseOne"
12-
import { FullScreenLoader } from "components/Loader/FullScreenLoader"
12+
import { Loader } from "components/Loader/Loader"
1313
import { LoadingButton } from "components/LoadingButton/LoadingButton"
1414
import { Margins } from "components/Margins/Margins"
1515
import { PageHeader, PageHeaderTitle } from "components/PageHeader/PageHeader"
@@ -84,7 +84,7 @@ export const GroupPage: React.FC = () => {
8484
</Helmet>
8585
<ChooseOne>
8686
<Cond condition={isLoading}>
87-
<FullScreenLoader />
87+
<Loader />
8888
</Cond>
8989

9090
<Cond condition>

0 commit comments

Comments
 (0)