From faebce82bc83a40c0ec6a24f8c9d951b42ad7c23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=84=9C=EC=A0=9C=EA=B2=BD?= Date: Thu, 29 Jan 2026 14:34:20 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=8F=B4=EB=8D=94=20=EA=B5=AC=EC=A1=B0?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD=EC=9C=BC=EB=A1=9C=20AuthInput=20path=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/auth/findPwStep/Step01VerifyEmail.tsx | 3 ++- src/components/auth/findPwStep/Step02ResetPassword.tsx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/auth/findPwStep/Step01VerifyEmail.tsx b/src/components/auth/findPwStep/Step01VerifyEmail.tsx index caae7c6..4538677 100644 --- a/src/components/auth/findPwStep/Step01VerifyEmail.tsx +++ b/src/components/auth/findPwStep/Step01VerifyEmail.tsx @@ -6,9 +6,10 @@ import type { z } from "zod"; import { step01Schema } from "@/utils/validation"; -import CommonAuthInput from "@/components/auth/CommonAuthInput"; import Button from "@/components/common/Button"; +import CommonAuthInput from "../common/CommonAuthInput"; + import useAuthStore from "@/store/useAuthStore"; interface IStep01VerifyEmailProps { diff --git a/src/components/auth/findPwStep/Step02ResetPassword.tsx b/src/components/auth/findPwStep/Step02ResetPassword.tsx index 5f4982f..f9c3fda 100644 --- a/src/components/auth/findPwStep/Step02ResetPassword.tsx +++ b/src/components/auth/findPwStep/Step02ResetPassword.tsx @@ -6,9 +6,10 @@ import type { z } from "zod"; import { step02Schema } from "@/utils/validation"; -import CommonAuthInput from "@/components/auth/CommonAuthInput"; import Button from "@/components/common/Button"; +import CommonAuthInput from "../common/CommonAuthInput"; + import useAuthStore from "@/store/useAuthStore"; type TStep02FormValues = z.infer;