Skip to content

Commit 0bcc7fe

Browse files
committed
lint --fix
1 parent 9d2db6f commit 0bcc7fe

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

demo/src/methods/viz/scores-summary.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ export const ScoresSummary: React.FC<{
1818
<div className="block">
1919
<CandiTagList candidates={winners.map((c) => candidatesById[c])} />
2020
</div>
21-
<H5 style={{ marginBottom: 0 }}>
22-
Scores
23-
</H5>
21+
<H5 style={{ marginBottom: 0 }}>Scores</H5>
2422
<QuickScores candidatesById={candidatesById} scoreObject={scores} />
2523
<style jsx>{`
2624
.block {

demo/src/results.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import { useStore } from './store'
33
import { selectMethod } from './store/selectors'
44
import { methods } from './methods'
5-
import { H3 } from './layout/headings';
5+
import { H3 } from './layout/headings'
66

77
export const Results: React.FC = () => {
88
const method = useStore(selectMethod)

demo/src/sandbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { MatrixComp } from './matrix'
1010
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
1111
import { faArrowUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'
1212
import { BallotsComp } from './ballots'
13-
import { H3 } from './layout/headings';
13+
import { H3 } from './layout/headings'
1414

1515
export const Sandbox: React.FC = () => {
1616
return (

0 commit comments

Comments
 (0)