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 75e6a93 commit a1ef3aa
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 @@ -16,7 +16,7 @@ import {
} from '@fortawesome/fontawesome-svg-core'
import { fas } from '@fortawesome/free-solid-svg-icons'
import { BallotsComp } from './ballots'
import { H3 } from './layout/headings';
import { H3 } from './layout/headings'

library.add(fas)

Expand Down

0 comments on commit a1ef3aa

Please sign in to comment.