File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export default function LoginPage() {
1919 // 로그인 훅과 로딩 상태 관리
2020 const { login, isPending } = useLogin ( ) ;
2121 const [ isSocialLogin , setIsSocialLogin ] = useState ( false ) ;
22- const [ currentProvider , setCurrentProvider ] = useState < OAuthProvider > ( oauthProviders . GOOGLE ) ;
22+ const [ , setCurrentProvider ] = useState < OAuthProvider > ( oauthProviders . GOOGLE ) ;
2323
2424 // 폼 유효성 검사 및 상태 관리
2525 const {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export default function SignupPage() {
2222 { /* 지원자 회원가입 카드 */ }
2323 < Link
2424 href = "/signup/applicant"
25- className = "bg-primary-blue-50 flex flex-1 flex-col items-center rounded-lg border-2 border-transparent p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-xl"
25+ className = "flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-blue-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-xl"
2626 >
2727 < div className = "flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50" >
2828 < FaUser className = "h-12 w-12 text-primary-orange-300" />
@@ -41,7 +41,7 @@ export default function SignupPage() {
4141 { /* 사장님 회원가입 카드 */ }
4242 < Link
4343 href = "/signup/owner"
44- className = "bg-primary-blue-50 flex flex-1 flex-col items-center rounded-lg border-2 border-transparent p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
44+ className = "flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-blue-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
4545 >
4646 < div className = "flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50" >
4747 < MdStorefront className = "h-14 w-14 text-primary-orange-300" />
You can’t perform that action at this time.
0 commit comments