Skip to content

Commit

Permalink
Fix mis-formatted files
Browse files Browse the repository at this point in the history
  • Loading branch information
bskinn committed Mar 29, 2024
1 parent 3bdd1a9 commit d9babc8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ serves to distinguish between multiple releases created on the same day.

- Relocated dev helper scripts to `scripts/` folder.


### Features at CHANGELOG Creation

- TypeScript codebase, webpacked, manifested, and zipped. Builds to a
Expand Down
2 changes: 1 addition & 1 deletion src/data/scores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const getScores = (): Array<number> => {
})
}

export const scrapeScoreSet = (): TScoreSet => {
export const scrapeScoreSet = (): TScoreSet => {
const results = { scores: getScores(), names: getNames() }
return results.names.map((n, i) => {
return { name: n, score: results.scores[i] }
Expand Down

0 comments on commit d9babc8

Please sign in to comment.