Skip to content

Commit

Permalink
fix(shared): Fix custom-projects.contract
Browse files Browse the repository at this point in the history
  • Loading branch information
alepefe committed Dec 5, 2024
1 parent d207be7 commit 6ea26fc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions shared/contracts/custom-projects.contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export const customProjectContract = contract.router({
query: customProjecsQuerySchema,
responses: {
200: contract.type<ApiPaginationResponse<CustomProject>>(),
401: contract.type<ErrorResponse>(),
},
},
getCustomProject: {
Expand All @@ -67,8 +66,6 @@ export const customProjectContract = contract.router({
query: customProjecsQuerySchema,
responses: {
200: contract.type<ApiResponse<CustomProject>>(),
401: contract.type<ErrorResponse>(),
404: contract.type<null>(),
},
},
saveCustomProject: {
Expand Down

0 comments on commit 6ea26fc

Please sign in to comment.