Skip to content

Commit

Permalink
fix/lint-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajeyakrishna-k committed Dec 15, 2023
1 parent 866daeb commit a6f878a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ router.all("*", async () => {

export default {
async fetch(request: Request, env: env): Promise<Response> {
const apiUrls = ["/invite","/roles"];
const apiUrls = ["/invite", "/roles"];
const url = new URL(request.url);
if (request.method === "POST" && !apiUrls.includes(url.pathname)) {
const isVerifiedRequest = await verifyBot(request, env);
Expand Down

0 comments on commit a6f878a

Please sign in to comment.