Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/assets/logo/social-logo/plain/kakao.svg

This file was deleted.

1 change: 0 additions & 1 deletion src/hooks/auth/useEmailVerification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export const useEmailVerification = ({

const PROVIDER_NAME: Record<string, string> = {
GOOGLE: "구글",
KAKAO: "카카오",
NAVER: "네이버",
};

Expand Down
12 changes: 0 additions & 12 deletions src/pages/auth/Signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import Button from "@/components/common/button/Button";

import MailIcon from "@/assets/icon/common/mail.svg?react";
import GoogleIcon from "@/assets/logo/social-logo/plain/google.svg?react";
import KakaoIcon from "@/assets/logo/social-logo/plain/kakao.svg?react";
import NaverWordmarkIcon from "@/assets/logo/social-logo/plain/naver.svg?react";
import useAuthStore from "@/store/useAuthStore";

Expand Down Expand Up @@ -79,17 +78,6 @@ export default function Signup() {
구글 로그인
</Button>

<Button
fullWidth
size="big"
variant="custom"
leftIcon={<KakaoIcon className="w-6 h-6 shrink-0" aria-hidden />}
onClick={() => handleSocialLogin("kakao")}
className="bg-oauth-kakao font-heading4 text-text-title shadow-Soft transition-opacity hover:opacity-90"
>
카카오 로그인
</Button>

<Button
fullWidth
size="big"
Expand Down
1 change: 0 additions & 1 deletion src/styles/tokens.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
--color-info-yellow: #facc15;

/* 브랜드 */
--color-oauth-kakao: #fee500;
--color-oauth-naver: #03c75a;
--color-platform-google: #f9ab00;
--color-platform-meta: #1877f2;
Expand Down
4 changes: 2 additions & 2 deletions src/types/auth/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ export interface ITokenRefreshResponse {
}

// 소셜 로그인 OAuth2 경로용
export type TSocialLoginPlatform = "kakao" | "naver" | "google";
export type TSocialLoginPlatform = "naver" | "google";

// 서버 응답의 로그인 provider
export type TLoginProvider = "EMAIL" | "KAKAO" | "NAVER" | "GOOGLE";
export type TLoginProvider = "EMAIL" | "NAVER" | "GOOGLE";

export interface ISmsSendRequest {
phoneNumber: string;
Expand Down
Loading