Skip to content

Commit

Permalink
style: lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
P0lip committed Nov 26, 2024
1 parent 283dc83 commit 15b6e1c
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/http/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,7 @@ export class ProblemJsonError extends Error {
detail?: string,
additional?: Dictionary<unknown>
): ProblemJsonError {
return new ProblemJsonError(
`${template.type}`,
template.title,
template.status,
detail || '',
additional
);
return new ProblemJsonError(`${template.type}`, template.title, template.status, detail || '', additional);
}

public static toProblemJson(
Expand Down

0 comments on commit 15b6e1c

Please sign in to comment.