Skip to content

Commit 1cc0a14

Browse files
authored
Feat/ 네이버로그인 검수완료
Feat/ 네이버로그인 검수완료
2 parents 6abb878 + af96141 commit 1cc0a14

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

Diff for: src/components/login/EmailLogin.jsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,7 @@ const EmailLogin = () => {
218218
<div>간편 로그인</div>
219219
</div>
220220
<div className="flex gap-[110px] mx-auto h-[100px] mt-[46px]">
221-
<div
222-
className="text-center "
223-
onClick={() => navigate("/developing")}
224-
>
221+
<div className="text-center ">
225222
<NaverLogin />
226223
<p className="mt-[20px] text-[#12396F] font-[400] text-[14px]">
227224
네이버

Diff for: src/components/login/NaverLogin.jsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ const NaverLogin = () => {
2323
};
2424
//원형아이콘클릭해도 네이버로그인이 가능.
2525
const handleClick = () => {
26-
// navigate("/developing");
27-
// naverRef.current.children[0].click();
26+
naverRef.current.children[0].click();
2827
};
2928
// 화면 첫 렌더링이후 바로 실행
3029
useEffect(() => {
31-
// initializeNaverLogin();
30+
initializeNaverLogin();
3231
}, []);
3332

3433
return (

0 commit comments

Comments
 (0)