Add ID to name change button

This commit is contained in:
Gabe Kangas 2022-11-23 11:41:58 -08:00
parent b9af156b5e
commit dab83505a8
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -57,7 +57,12 @@ export const NameChangeModal: FC = () => {
const colorOptions = [...Array(maxColor)].map((e, i) => i);
const saveButton = (
<Button type="primary" onClick={handleNameChange} disabled={!saveEnabled()}>
<Button
type="primary"
id="name-change-submit"
onClick={handleNameChange}
disabled={!saveEnabled()}
>
Change name
</Button>
);