Skip to content

Commit

Permalink
chore(deps): typescript from 5.5.4 to 5.6.2 #2538
Browse files Browse the repository at this point in the history
  • Loading branch information
iamamritpalrandhawa committed Sep 30, 2024
1 parent 96d609b commit 5c71674
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
},
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion src/resolvers/Mutation/createVenue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const createVenue: MutationResolvers["createVenue"] = async (
}

// Check if the venue name provided is an empty string.
if (!args.data?.name ?? "") {
if (!args.data?.name) {
throw new errors.InputValidationError(
requestContext.translate(VENUE_NAME_MISSING_ERROR.MESSAGE),
VENUE_NAME_MISSING_ERROR.CODE,
Expand Down

0 comments on commit 5c71674

Please sign in to comment.