diff options
| author | Dhravya Shah <[email protected]> | 2024-07-21 10:41:19 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-21 10:41:19 -0500 |
| commit | c24e9de8f214a76a70ece0716651ebab0b18ff90 (patch) | |
| tree | b00e46e376e172fd3ff8d691069434bed50efb88 | |
| parent | launch fixes: fix onboarding and no dead buttons (diff) | |
| download | supermemory-c24e9de8f214a76a70ece0716651ebab0b18ff90.tar.xz supermemory-c24e9de8f214a76a70ece0716651ebab0b18ff90.zip | |
/chat page redirects back to home
| -rw-r--r-- | apps/web/app/(dash)/chat/route.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/web/app/(dash)/chat/route.ts b/apps/web/app/(dash)/chat/route.ts new file mode 100644 index 00000000..6599590c --- /dev/null +++ b/apps/web/app/(dash)/chat/route.ts @@ -0,0 +1,5 @@ +import { redirect } from "next/navigation"; + +export default async function GET() { + return redirect("/home"); +} |