File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed
site/src/pages/OrganizationSettingsPage Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ import {
28
28
} from "utils/formUtils" ;
29
29
import { useOrganizationSettings } from "./OrganizationSettingsLayout" ;
30
30
import { IconField } from "components/IconField/IconField" ;
31
+ import { Stack } from "components/Stack/Stack" ;
31
32
32
33
const MAX_DESCRIPTION_CHAR_LIMIT = 128 ;
33
34
const MAX_DESCRIPTION_MESSAGE =
@@ -139,16 +140,17 @@ const OrganizationSettingsPage: FC = () => {
139
140
</ Button >
140
141
) }
141
142
142
- < hr />
143
- < TextField
144
- label = "New organization name"
145
- onChange = { ( event ) => setNewOrgName ( event . target . value ) }
146
- />
147
- < Button
148
- onClick = { ( ) => addOrganizationMutation . mutate ( { name : newOrgName } ) }
149
- >
150
- Create new team
151
- </ Button >
143
+ < Stack css = { { marginTop : 128 } } >
144
+ < TextField
145
+ label = "New organization name"
146
+ onChange = { ( event ) => setNewOrgName ( event . target . value ) }
147
+ />
148
+ < Button
149
+ onClick = { ( ) => addOrganizationMutation . mutate ( { name : newOrgName } ) }
150
+ >
151
+ Create new team
152
+ </ Button >
153
+ </ Stack >
152
154
</ Margins >
153
155
) ;
154
156
} ;
You can’t perform that action at this time.
0 commit comments