diff --git a/index.ts b/index.ts index 876ac0e..75ee679 100644 --- a/index.ts +++ b/index.ts @@ -65,11 +65,11 @@ Bun.serve({ const name = searchParams.get("name") as string; if (!type) { - return new Response("Please provide a type parameter, user or orgs", { status: 400 }); + return new Response("Please provide a type parameter, users or orgs", { status: 400 }); } if (type !== "users" && type !== "orgs") { - return new Response("Type parameter must be either user or orgs", { status: 400 }); + return new Response("Type parameter must be either users or orgs", { status: 400 }); } if (!name) {