File tree Expand file tree Collapse file tree 1 file changed +1
-31
lines changed Expand file tree Collapse file tree 1 file changed +1
-31
lines changed Original file line number Diff line number Diff line change @@ -52,34 +52,4 @@ const useStyles = makeStyles({
52
52
hintText : {
53
53
opacity : 0.75 ,
54
54
} ,
55
- } )
56
-
57
- /*
58
- <TextField
59
- autoComplete="off"
60
- variant="outlined"
61
- onChange={(ev) => handleSelectPool(ev.target.value)}
62
- value={selectedPool ? selectedPool.name : ""}
63
- disabled={fieldIsDisabled}
64
- required
65
- label="Workspace provider"
66
- select
67
- >
68
- {poolsSorted.map((pool: UIResourcePoolWithRegion) => (
69
- <MenuItem key={pool.name} value={pool.name}>
70
- <Box alignItems="center" display="flex">
71
- <ProviderIcon provider={pool} type={pool.type} />
72
- <Box ml={1}>
73
- <Typography>{pool.name}</Typography>
74
- </Box>
75
- {pool.region !== null && (
76
- <Box ml={1}>
77
- <Typography className={styles.hintText} variant="caption">
78
- {pool.region}
79
- </Typography>
80
- </Box>
81
- )}
82
- </Box>
83
- </MenuItem>
84
- ))}
85
- </TextField>*/
55
+ } )
You can’t perform that action at this time.
0 commit comments