Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Jul 7, 2024
1 parent bea485c commit f0a1e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api.planx.uk/modules/flows/validate/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const validateFileTypes = (flowGraph: FlowGraph): ValidationResponse => {
if (invalidFileFns.length > 0) {
// Get unique fns with count of occurances
const countInvalidFileFns = countBy(invalidFileFns);
let summarisedInvalidFileFns: string[] = [];
const summarisedInvalidFileFns: string[] = [];
Object.entries(countInvalidFileFns).map(([k, v]: [string, number]) => {
summarisedInvalidFileFns.push(`${k} (${v})`);
});
Expand Down

0 comments on commit f0a1e4f

Please sign in to comment.