2026-05-15 08:36:11 -07:00
|
|
|
import { redirect } from "next/navigation";
|
|
|
|
|
|
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
|
|
2026-05-15 10:57:17 -07:00
|
|
|
// Legacy URL — moved to /settings/tokens in Phase 3b. Preserve old
|
|
|
|
|
// bookmarks and the existing instructions printed by older clients.
|
|
|
|
|
export default function ConnectRedirect() {
|
|
|
|
|
redirect("/settings/tokens");
|
2026-05-15 08:36:11 -07:00
|
|
|
}
|