From 7e4eba6e52cea2a03fb1115993508049c53a7716 Mon Sep 17 00:00:00 2001 From: MOON Date: Fri, 26 Jul 2024 11:56:01 +0900 Subject: [PATCH] =?UTF-8?q?:wrench:=20lint=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useRegisterMutation.ts | 2 +- src/schema/auth.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/useRegisterMutation.ts b/src/hooks/useRegisterMutation.ts index d8db666e..72307f98 100644 --- a/src/hooks/useRegisterMutation.ts +++ b/src/hooks/useRegisterMutation.ts @@ -1,4 +1,4 @@ -import postSignup from '@/apis/auth'; +import { postSignup } from '@/apis/auth'; import { toast } from '@/components/ui/use-toast'; import { useMutation } from '@tanstack/react-query'; import { useRouter } from 'next/router'; diff --git a/src/schema/auth.ts b/src/schema/auth.ts index 358dbd5d..0a9069a8 100644 --- a/src/schema/auth.ts +++ b/src/schema/auth.ts @@ -46,4 +46,4 @@ export type PostSignUpRequestType = z.infer; export type PostSignUpResponseType = z.infer; // NOTE: 로그인 타입 export type PostSigninRequestType = z.infer; -export type PostSigninResponseType = z.infer; \ No newline at end of file +export type PostSigninResponseType = z.infer;