Skip to content

Commit 3bda3d7

Browse files
authored
Merge pull request #440 from boostcampwm-2024/feat/google-github-oauth
🐛 fix: build 오류 수정
2 parents eedf34e + d1c57fc commit 3bda3d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/pages/OAuthSuccessPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useLocation, useNavigate } from "react-router-dom";
33

44
import { useAuthStore } from "@/store/useAuthStore.ts";
55

6-
export const OAuthSuccessPage = () => {
6+
export default function OAuthSuccessPage() {
77
const navigate = useNavigate();
88
const location = useLocation();
99
const { setUserFromToken } = useAuthStore();
@@ -25,4 +25,4 @@ export const OAuthSuccessPage = () => {
2525
<p className="text-lg">로그인 처리 중입니다...</p>
2626
</div>
2727
);
28-
};
28+
}

0 commit comments

Comments
 (0)