Skip to content

Commit

Permalink
add default case
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed May 13, 2024
1 parent 2d4dff1 commit 3d3eddb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions database/parkingDB.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export function canUpdateObject(object, sessionUser) {
}
break;
}
default:
}
}
return canUpdate;
Expand Down
1 change: 1 addition & 0 deletions database/parkingDB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export function canUpdateObject(object: Record, sessionUser: PTSUser): boolean {
}
break
}
default:
}
}

Expand Down

0 comments on commit 3d3eddb

Please sign in to comment.