Skip to content

Commit

Permalink
fix: order
Browse files Browse the repository at this point in the history
  • Loading branch information
pbkompasz committed Sep 14, 2024
1 parent d14689d commit cfe2588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/validators.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function validateRequestMethod(expectedMethod: string, receivedMethod: string) {
export function validateRequestMethod(receivedMethod: string, expectedMethod: string) {
if (receivedMethod !== expectedMethod) {
console.error(
"Invalid request method.",
Expand Down

0 comments on commit cfe2588

Please sign in to comment.