File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ const PassengerShowcaseForm = () => {
149
149
}
150
150
if ( e . target . name === 'socialPermission' ) {
151
151
setState (
152
- Object . assign ( { } , state , { [ e . target . name ] : e . target . value == 'true' } )
152
+ Object . assign ( { } , state , { [ e . target . name ] : e . target . value === 'true' } )
153
153
) ;
154
154
return ;
155
155
}
@@ -364,8 +364,8 @@ const PassengerShowcaseForm = () => {
364
364
submission.)
365
365
</ span >
366
366
</ label >
367
- < label > Social media permission</ label >
368
367
< label >
368
+ Social media permission
369
369
< span className = { css . radioLabel } >
370
370
< input
371
371
type = "radio"
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ import NewLogo from '../images/new-logo.svg';
6
6
7
7
import * as css from './TopBar.module.css' ;
8
8
9
- import Logo from '../images/logo.svg' ;
10
-
11
9
const suffix = ( day ) => {
12
10
if ( day === '11' || day === '12' || day === '13' ) return 'th' ;
13
11
switch ( day [ day . length - 1 ] ) {
You can’t perform that action at this time.
0 commit comments