From d86064f1f83ded2c6575188f295a6f6e38ac5ab2 Mon Sep 17 00:00:00 2001 From: ImxYJL Date: Mon, 23 Dec 2024 22:06:26 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=ED=81=B4=EB=A6=AD=20=ED=95=B8?= =?UTF-8?q?=EB=93=A4=EB=9F=AC=20=EB=84=A4=EC=9D=B4=EB=B0=8D=20=EA=B0=84?= =?UTF-8?q?=EC=86=8C=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/common/GithubLoginButton/index.tsx | 6 +++--- frontend/src/components/common/LoginButton/index.tsx | 6 +++--- .../modals/components/LoginRequestModal/index.tsx | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/components/common/GithubLoginButton/index.tsx b/frontend/src/components/common/GithubLoginButton/index.tsx index dba985d86..6a0486b28 100644 --- a/frontend/src/components/common/GithubLoginButton/index.tsx +++ b/frontend/src/components/common/GithubLoginButton/index.tsx @@ -3,15 +3,15 @@ import { LoginButtonStyleProps } from '@/components/common/LoginButton'; import { LoginButton } from '@/components/index'; interface GithubLoginButtonProps extends LoginButtonStyleProps { - handleGithubLoginButtonClick: () => void; + handleClick: () => void; } -const GithubLoginButton = ({ handleGithubLoginButtonClick, $logoStyle, $style }: GithubLoginButtonProps) => { +const GithubLoginButton = ({ handleClick, $logoStyle, $style }: GithubLoginButtonProps) => { return ( void; + handleClick: () => void; } export interface LoginButtonStyleProps { @@ -19,12 +19,12 @@ const LoginButton = ({ platform, engPlatform, logoSrc, - handleLoginButtonClick, + handleClick, $logoStyle, $style, }: LoginButtonProps) => { return ( -