Skip to content

Commit a73ecd8

Browse files
committed
fix: 빌드 에러 해결
1 parent bbf729a commit a73ecd8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/api/auth/googleLogin/Example.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ const Example = () => {
77
useEffect(() => {
88
const getToken = async () => {
99
const code = getGoogleAuthCode();
10-
console.log(code);
11-
if (!code) return;
10+
11+
if (!code) {
12+
return;
13+
}
1214

1315
try {
1416
const data = await getAccessToken(code);

0 commit comments

Comments
 (0)