Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ChakkritGit committed Dec 26, 2024
1 parent 60c378c commit 5d9b101
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/setting/devices/adddevform.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1030,14 +1030,14 @@ export default function Adddevform(managedevices: managedevices) {
<Form.Check
type='radio'
label='Ethernet'
checked={Mode.lan === 0}
onChange={() => setMode({ ...Mode, lan: 0 })}
checked={Mode.lan === 1}
onChange={() => setMode({ ...Mode, lan: 1 })}
/>
<Form.Check
type='radio'
label='Auto'
checked={Mode.lan === 1}
onChange={() => setMode({ ...Mode, lan: 1 })}
checked={Mode.lan === 0}
onChange={() => setMode({ ...Mode, lan: 0 })}
/>
</>
:
Expand Down

0 comments on commit 5d9b101

Please sign in to comment.