fix response error return type

This commit is contained in:
Francis Cao 2025-09-15 10:18:28 -07:00
parent 460200dfef
commit 8083482ba8
12 changed files with 23 additions and 25 deletions

View file

@ -55,7 +55,7 @@ export async function POST(
return Response.json(website);
} catch (e: any) {
if (e.message.toLowerCase().includes('unique constraint') && e.message.includes('share_id')) {
return badRequest('That share ID is already taken.');
return badRequest({ message: 'That share ID is already taken.' });
}
return serverError(e);