diff options
| author | Dhravya Shah <[email protected]> | 2024-07-09 14:06:49 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-09 14:06:49 -0500 |
| commit | abc5d890610b891d35bc09997ef7d59dad93cdd2 (patch) | |
| tree | a1ccb4d803c2c51879f7769898a85a3fdefaf4cb /apps/web/app/api | |
| parent | Merge pull request #111 from Dhravya/kush/misc-be-improvements (diff) | |
| download | supermemory-abc5d890610b891d35bc09997ef7d59dad93cdd2.tar.xz supermemory-abc5d890610b891d35bc09997ef7d59dad93cdd2.zip | |
return whole response
Diffstat (limited to 'apps/web/app/api')
| -rw-r--r-- | apps/web/app/api/chat/route.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/api/chat/route.ts b/apps/web/app/api/chat/route.ts index d1730baa..693b1be5 100644 --- a/apps/web/app/api/chat/route.ts +++ b/apps/web/app/api/chat/route.ts @@ -83,5 +83,5 @@ export async function POST(req: NextRequest) { ); } - return new Response(resp.body, { status: 200 }); + return resp } |