Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cbolles committed Sep 9, 2024
1 parent 74b8fff commit 4e5bd84
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/categories/categories.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ export class CategoryResolver {
}

@Mutation(() => Category)
async createCategory(
@Args('category', CreateCategoryPipe) category: CreateCategory
): Promise<Category> {
async createCategory(@Args('category', CreateCategoryPipe) category: CreateCategory): Promise<Category> {

Check warning on line 36 in src/categories/categories.resolver.ts

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🕹️ Function is not covered

Warning! Not covered function
return this.categoryService.create(category);
}

Check warning on line 38 in src/categories/categories.resolver.ts

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement

Expand Down

0 comments on commit 4e5bd84

Please sign in to comment.