From 58cb96824cad05df4240fb388208ebc0f5f06bce Mon Sep 17 00:00:00 2001 From: yscha Date: Wed, 17 Dec 2025 16:36:56 +0900 Subject: [PATCH] =?UTF-8?q?qnq=20customer=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/inquiry/RegistForm.tsx | 15 +++++++++++++++ src/store/session.ts | 1 + src/types/Auth.ts | 1 + 3 files changed, 17 insertions(+) diff --git a/src/components/inquiry/RegistForm.tsx b/src/components/inquiry/RegistForm.tsx index 5cb76b7..862e181 100644 --- a/src/components/inquiry/RegistForm.tsx +++ b/src/components/inquiry/RegistForm.tsx @@ -222,6 +222,21 @@ export default function RegistForm() { /> +
+
+ Customer * +
+
+ +
+
電話番号
diff --git a/src/store/session.ts b/src/store/session.ts index 2bbebd3..998ac57 100644 --- a/src/store/session.ts +++ b/src/store/session.ts @@ -45,6 +45,7 @@ const initialState: InitialState = { builderNm: null, isLoggedIn: false, role: null, + custNm: null, }, } diff --git a/src/types/Auth.ts b/src/types/Auth.ts index c0b3ce2..8a84ac7 100644 --- a/src/types/Auth.ts +++ b/src/types/Auth.ts @@ -31,4 +31,5 @@ export interface SessionData { builderNm: null | string isLoggedIn: boolean role: string | null + custNm: null | string }