linter fixes

This commit is contained in:
2025-05-27 15:07:33 +03:00
parent b30796ae4b
commit 85349bf961
16 changed files with 991 additions and 1295 deletions

View File

@@ -34,6 +34,7 @@ export async function POST(req: NextRequest) {
const result = await response.json()
return new Response(JSON.stringify(result), { status: 200 })
} catch (error) {
console.error('POST /api/account/create-route error:', error)
return new Response(JSON.stringify({ error: 'Internal Server Error' }), {
status: 500,
})