Skip to content

Commit

Permalink
reformat with newer prettier 🤷
Browse files Browse the repository at this point in the history
  • Loading branch information
mgwalker committed Nov 13, 2024
1 parent d20326e commit 635447b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/q-expand.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function getCodeLine(code, csvData) {
// If this is a contractor code, replace the lowercase c with -C again
code.endsWith("c") ? `${code.slice(0, code.length - 1)}-C` : code,
": ",
code.endsWith("c") ? "Contractor" : csvData[code] ?? "???",
code.endsWith("c") ? "Contractor" : (csvData[code] ?? "???"),
].join("");
}

Expand Down

0 comments on commit 635447b

Please sign in to comment.