5 lines
175 B
TypeScript
5 lines
175 B
TypeScript
|
import type { LoaderFunction } from "@remix-run/node";
|
||
|
import { redirect } from "@remix-run/node";
|
||
|
|
||
|
export const loader: LoaderFunction = () => redirect("/settings/account");
|