Update index.ts

This commit is contained in:
Nicolas 2024-04-18 10:34:41 -07:00
parent c4cc4b9262
commit 6112cc1c2c
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ async function authenticateUser(req, res, mode?: string): Promise<{ success: boo
app.post("/v0/scrape", async (req, res) => {
try {
// make sure to authenticate user first, Bearer <token>
const { success, team_id, error, status } = await authenticateUser(req, res, "crawl");
const { success, team_id, error, status } = await authenticateUser(req, res, "scrape");
if (!success) {
return res.status(status).json({ error });
}