feat: update frontend references from User to PartyUser for party user management module

This commit is contained in:
louiscklaw
2025-06-16 10:20:09 +08:00
parent ee2a377bf6
commit 44d324b40e
4 changed files with 13 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ import { useTranslation } from 'react-i18next';
import { CustomBreadcrumbs } from 'src/components/custom-breadcrumbs';
import { DashboardContent } from 'src/layouts/dashboard';
import { paths } from 'src/routes/paths';
import { UserNewEditForm } from '../party-user-new-edit-form';
import { PartyUserNewEditForm } from '../party-user-new-edit-form';
// ----------------------------------------------------------------------
@@ -22,7 +22,7 @@ export function UserCreateView() {
sx={{ mb: { xs: 3, md: 5 } }}
/>
<UserNewEditForm />
<PartyUserNewEditForm />
</DashboardContent>
);
}