1
0
Fork 0

feat(shared): Set IDs on new inputs

This commit is contained in:
joostdecock 2023-08-26 09:27:27 +02:00
parent 9551ab3630
commit 62f6cc6ac4
18 changed files with 29 additions and 0 deletions

View file

@ -39,6 +39,7 @@ export const GithubSettings = () => {
<LoadingStatus />
<h2 className="text-4xl">{t('githubTitle')}</h2>
<StringInput
id="account-github-email"
label={t('email')}
current={githubEmail}
update={setGithubEmail}
@ -47,6 +48,7 @@ export const GithubSettings = () => {
docs={<DynamicOrgDocs language={i18n.language} path={`site/account/github`} />}
/>
<StringInput
id="account-github-username"
label={t('username')}
current={githubUsername}
update={setGithubUsername}