Skip to content

Commit 522e343

Browse files
committed
booleans
1 parent d3b300a commit 522e343

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/PassengerShowcaseForm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ const PassengerShowcaseForm = () => {
362362
<input
363363
type="radio"
364364
name="socialPermission"
365-
value="true"
365+
value={true}
366366
checked={state.socialPermission === true}
367367
onChange={onChange}
368368
/>
@@ -373,7 +373,7 @@ const PassengerShowcaseForm = () => {
373373
<input
374374
type="radio"
375375
name="socialPermission"
376-
value="false"
376+
value={false}
377377
checked={state.socialPermission === false}
378378
onChange={onChange}
379379
/>

0 commit comments

Comments
 (0)