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 ( -