File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ import * as Yup from "yup"
13
13
import { AlertBanner } from "components/AlertBanner/AlertBanner"
14
14
import { makeStyles } from "@material-ui/core/styles"
15
15
import { FullPageHorizontalForm } from "components/FullPageForm/FullPageHorizontalForm"
16
- import { FullScreenLoader } from "components/Loader/FullScreenLoader"
17
16
import { SelectedTemplate } from "./SelectedTemplate"
17
+ import { Loader } from "components/Loader/Loader"
18
18
19
19
export enum CreateWorkspaceErrors {
20
20
GET_TEMPLATES_ERROR = "getTemplatesError" ,
@@ -101,7 +101,7 @@ export const CreateWorkspacePageView: FC<
101
101
)
102
102
103
103
if ( isLoading ) {
104
- return < FullScreenLoader />
104
+ return < Loader />
105
105
}
106
106
107
107
if ( props . hasTemplateErrors ) {
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import { Group } from "api/typesGenerated"
3
3
import { ChooseOne , Cond } from "components/Conditionals/ChooseOne"
4
4
import { FormFooter } from "components/FormFooter/FormFooter"
5
5
import { FullPageForm } from "components/FullPageForm/FullPageForm"
6
+ import { Loader } from "components/Loader/Loader"
6
7
import { LazyIconField } from "components/IconField/LazyIconField"
7
- import { FullScreenLoader } from "components/Loader/FullScreenLoader"
8
8
import { Margins } from "components/Margins/Margins"
9
9
import { useFormik } from "formik"
10
10
import { FC } from "react"
@@ -104,7 +104,7 @@ export const SettingsGroupPageView: FC<SettingsGroupPageViewProps> = ({
104
104
return (
105
105
< ChooseOne >
106
106
< Cond condition = { isLoading } >
107
- < FullScreenLoader />
107
+ < Loader />
108
108
</ Cond >
109
109
110
110
< Cond >
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { makeStyles } from "@material-ui/core/styles"
2
2
import { useMachine } from "@xstate/react"
3
3
import { AlertBanner } from "components/AlertBanner/AlertBanner"
4
4
import { ConfirmDialog } from "components/Dialogs/ConfirmDialog/ConfirmDialog"
5
+ import { Loader } from "components/Loader/Loader"
5
6
import { Margins } from "components/Margins/Margins"
6
7
import dayjs from "dayjs"
7
8
import { scheduleToAutoStart } from "pages/WorkspaceSchedulePage/schedule"
@@ -11,7 +12,6 @@ import { useTranslation } from "react-i18next"
11
12
import { Navigate , useNavigate , useParams } from "react-router-dom"
12
13
import { scheduleChanged } from "util/schedule"
13
14
import * as TypesGen from "../../api/typesGenerated"
14
- import { FullScreenLoader } from "../../components/Loader/FullScreenLoader"
15
15
import { WorkspaceScheduleForm } from "../../components/WorkspaceScheduleForm/WorkspaceScheduleForm"
16
16
import { firstOrItem } from "../../util/array"
17
17
import { workspaceSchedule } from "../../xServices/workspaceSchedule/workspaceScheduleXService"
@@ -63,7 +63,7 @@ export const WorkspaceSchedulePage: FC = () => {
63
63
}
64
64
65
65
if ( scheduleState . hasTag ( "loading" ) || ! template ) {
66
- return < FullScreenLoader />
66
+ return < Loader />
67
67
}
68
68
69
69
if ( scheduleState . matches ( "error" ) ) {
You can’t perform that action at this time.
0 commit comments