Skip to content

Commit ed57254

Browse files
committed
🧹
1 parent 0a2bfea commit ed57254

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

site/src/pages/OrganizationSettingsPage/OrganizationSettingsPage.tsx

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import {
2828
} from "utils/formUtils";
2929
import { useOrganizationSettings } from "./OrganizationSettingsLayout";
3030
import { IconField } from "components/IconField/IconField";
31+
import { Stack } from "components/Stack/Stack";
3132

3233
const MAX_DESCRIPTION_CHAR_LIMIT = 128;
3334
const MAX_DESCRIPTION_MESSAGE =
@@ -139,16 +140,17 @@ const OrganizationSettingsPage: FC = () => {
139140
</Button>
140141
)}
141142

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>
152154
</Margins>
153155
);
154156
};

0 commit comments

Comments
 (0)