Skip to content

Commit

Permalink
lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lzear committed Feb 11, 2023
1 parent 9d2db6f commit 0bcc7fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions demo/src/methods/viz/scores-summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ export const ScoresSummary: React.FC<{
<div className="block">
<CandiTagList candidates={winners.map((c) => candidatesById[c])} />
</div>
<H5 style={{ marginBottom: 0 }}>
Scores
</H5>
<H5 style={{ marginBottom: 0 }}>Scores</H5>
<QuickScores candidatesById={candidatesById} scoreObject={scores} />
<style jsx>{`
.block {
Expand Down
2 changes: 1 addition & 1 deletion demo/src/results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import { useStore } from './store'
import { selectMethod } from './store/selectors'
import { methods } from './methods'
import { H3 } from './layout/headings';
import { H3 } from './layout/headings'

export const Results: React.FC = () => {
const method = useStore(selectMethod)
Expand Down
2 changes: 1 addition & 1 deletion demo/src/sandbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { MatrixComp } from './matrix'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faArrowUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'
import { BallotsComp } from './ballots'
import { H3 } from './layout/headings';
import { H3 } from './layout/headings'

export const Sandbox: React.FC = () => {
return (
Expand Down

0 comments on commit 0bcc7fe

Please sign in to comment.