7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
|
|
import type { LoaderFunction } from "remix";
|
||
|
|
import { redirect } from "remix";
|
||
|
|
|
||
|
|
export const loader: LoaderFunction = async () => {
|
||
|
|
return redirect("/account/preferences");
|
||
|
|
};
|