Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anttiviljami committed Nov 9, 2023
1 parent 6924fc2 commit c098313
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/typegen/src/typegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function generateMethodForOperation(methodName: string, operation: Operation, ex
const { operationId, summary, description } = operation;

if (operationId === 'createEntity') {
debugger
debugger;
}

// parameters arg
Expand Down Expand Up @@ -222,8 +222,8 @@ const normalizeSchema = (schema: Document): Document => {
}

// make sure schema is plain JSON with no metadata
return JSON.parse(JSON.stringify(clonedSchema))
}
return JSON.parse(JSON.stringify(clonedSchema));
};

if (require.main === module) {
main();
Expand Down

0 comments on commit c098313

Please sign in to comment.