Skip to content

Commit cfe2005

Browse files
authored
fix: element ids (#86)
1 parent f68d34f commit cfe2005

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/screens/settings.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ export default function Settings() {
2323
alignHorizontal="justify"
2424
wrap={false}
2525
>
26-
<Box as="label" htmlFor="instant-auth" width="full">
26+
<Box as="label" htmlFor="instant-connect-auth" width="full">
2727
<Text size="12px">Bypass Connect Authorization</Text>
2828
</Box>
2929
{/** TODO: <Checkbox> component */}
3030
<Box
3131
as="input"
32-
id="instant-auth"
32+
id="instant-connect-auth"
3333
checked={bypassConnectAuth}
3434
onChange={(e) => {
3535
setBypassConnectAuth(e.target.checked)
@@ -42,13 +42,13 @@ export default function Settings() {
4242
alignHorizontal="justify"
4343
wrap={false}
4444
>
45-
<Box as="label" htmlFor="instant-auth" width="full">
45+
<Box as="label" htmlFor="instant-signature-auth" width="full">
4646
<Text size="12px">Bypass Signature Authorization</Text>
4747
</Box>
4848
{/** TODO: <Checkbox> component */}
4949
<Box
5050
as="input"
51-
id="instant-auth"
51+
id="instant-signature-auth"
5252
checked={bypassSignatureAuth}
5353
onChange={(e) => {
5454
setBypassSignatureAuth(e.target.checked)
@@ -61,13 +61,13 @@ export default function Settings() {
6161
alignHorizontal="justify"
6262
wrap={false}
6363
>
64-
<Box as="label" htmlFor="instant-auth" width="full">
64+
<Box as="label" htmlFor="instant-transaction-auth" width="full">
6565
<Text size="12px">Bypass Transaction Authorization</Text>
6666
</Box>
6767
{/** TODO: <Checkbox> component */}
6868
<Box
6969
as="input"
70-
id="instant-auth"
70+
id="instant-transaction-auth"
7171
checked={bypassTransactionAuth}
7272
onChange={(e) => {
7373
setBypassTransactionAuth(e.target.checked)

0 commit comments

Comments
 (0)