Skip to content

Commit

Permalink
ci: Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Jun 25, 2024
1 parent cb019a5 commit aa540b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib/blueprint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface Blueprint {
interface Route {
name: string
path: string
// descriptions will default to an empty string and emit a warning, e.g.
// descriptions will default to an empty string and emit a warning, e.g.
// if (description.trim().length === 0) console.warn(`... has an empty description`)
description: string
namespace: Namespace | null
Expand Down Expand Up @@ -92,7 +92,8 @@ export const createBlueprint = ({ openapi }: TypesModule): Blueprint => {
},
],
response: {
description: Object.values(operation.responses)[0]?.description ??
description:
Object.values(operation.responses)[0]?.description ??
'No Description',
},
semanticMethod: 'GET',
Expand Down

0 comments on commit aa540b9

Please sign in to comment.