Skip to content

Commit 9d6797f

Browse files
committed
fix linter warnings
1 parent 04bc148 commit 9d6797f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/components/PassengerShowcaseForm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const PassengerShowcaseForm = () => {
149149
}
150150
if (e.target.name === 'socialPermission') {
151151
setState(
152-
Object.assign({}, state, { [e.target.name]: e.target.value == 'true' })
152+
Object.assign({}, state, { [e.target.name]: e.target.value === 'true' })
153153
);
154154
return;
155155
}
@@ -364,8 +364,8 @@ const PassengerShowcaseForm = () => {
364364
submission.)
365365
</span>
366366
</label>
367-
<label>Social media permission</label>
368367
<label>
368+
Social media permission
369369
<span className={css.radioLabel}>
370370
<input
371371
type="radio"

src/components/TopBar.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ import NewLogo from '../images/new-logo.svg';
66

77
import * as css from './TopBar.module.css';
88

9-
import Logo from '../images/logo.svg';
10-
119
const suffix = (day) => {
1210
if (day === '11' || day === '12' || day === '13') return 'th';
1311
switch (day[day.length - 1]) {

0 commit comments

Comments
 (0)