From 428ea888a75300b9de769026b40eb4fd216aba95 Mon Sep 17 00:00:00 2001 From: kyy Date: Mon, 4 May 2026 11:45:28 +0900 Subject: [PATCH] =?UTF-8?q?dev=20=EB=B3=91=ED=95=A9=20TypeScript=20?= =?UTF-8?q?=EC=BB=B4=ED=8C=8C=EC=9D=BC=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adminfront/src/features/users/UserCreatePage.tsx | 10 ---------- adminfront/src/features/users/UserDetailPage.tsx | 10 ---------- 2 files changed, 20 deletions(-) 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>; };