diff --git a/adminfront/src/features/users/UserCreatePage.tsx b/adminfront/src/features/users/UserCreatePage.tsx index dd28117a..5900db79 100644 --- a/adminfront/src/features/users/UserCreatePage.tsx +++ b/adminfront/src/features/users/UserCreatePage.tsx @@ -56,16 +56,6 @@ import { } from "./orgChartPicker"; import type { UserSchemaField } from "./userSchemaFields"; -type UserSchemaField = { - key: string; - label?: string; - type?: "text" | "number" | "boolean" | "date"; - required?: boolean; - adminOnly?: boolean; - validation?: string; - isLoginId?: boolean; -}; - type UserFormValues = UserCreateRequest & { metadata: Record }; type UserType = "hanmac" | "external" | "personal"; diff --git a/adminfront/src/features/users/UserDetailPage.tsx b/adminfront/src/features/users/UserDetailPage.tsx index 07a94ca3..958685cd 100644 --- a/adminfront/src/features/users/UserDetailPage.tsx +++ b/adminfront/src/features/users/UserDetailPage.tsx @@ -79,16 +79,6 @@ import { } from "./orgChartPicker"; import type { UserSchemaField } from "./userSchemaFields"; -type UserSchemaField = { - key: string; - label?: string; - type?: "text" | "number" | "boolean" | "date"; - required?: boolean; - adminOnly?: boolean; - validation?: string; - isLoginId?: boolean; -}; - type UserFormValues = Omit & { metadata: Record>; };