1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-08 01:15:49 +02:00
unleash.unleash/frontend/src/component/project/Project/CreateProject/CreateProject.tsx
Thomas Heartman 0af5bbad38
chore: remove createProjectWithEnvironmentConfig and newCreateProjectUI flags (#7429)
This PR removes the last two flags related to the project managament
improvements project, making the new project creation form GA.

In doing so, we can also delete the old project creation form (or at
least the page, the form is still in use in the project settings).
2024-06-24 12:53:55 +02:00

8 lines
172 B
TypeScript

import { Navigate } from 'react-router-dom';
const CreateProject = () => {
return <Navigate to={`/projects?create=true`} replace />;
};
export default CreateProject;