mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-09 10:44:38 -06:00
Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com> Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
7 lines
215 B
TypeScript
7 lines
215 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export const ProjectSettingsPage = async (props) => {
|
|
const params = await props.params;
|
|
return redirect(`/environments/${params.environmentId}/project/general`);
|
|
};
|