File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
site/src/modules/provisioners Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- import Alert , { AlertColor } from "@mui/material/Alert" ;
1
+ import Alert , { type AlertColor } from "@mui/material/Alert" ;
2
2
import AlertTitle from "@mui/material/AlertTitle" ;
3
3
import { Stack } from "components/Stack/Stack" ;
4
4
import { AlertDetail } from "components/Alert/Alert" ;
5
- import { type FC } from "react" ;
5
+ import type { FC } from "react" ;
6
6
import { ProvisionerTag } from "modules/provisioners/ProvisionerTag" ;
7
7
8
8
interface ProvisionerAlertProps {
@@ -16,7 +16,8 @@ export const ProvisionerAlert : FC<ProvisionerAlertProps> = ({
16
16
availableProvisioners,
17
17
tags
18
18
} ) => {
19
- let title , detail : string ;
19
+ let title : string ;
20
+ let detail : string ;
20
21
switch ( true ) {
21
22
case ( matchingProvisioners === 0 ) :
22
23
title = "Provisioning Cannot Proceed"
You can’t perform that action at this time.
0 commit comments