Skip to content

Commit d1c57fc

Browse files
committed
๐Ÿ› fix: build ์˜ค๋ฅ˜ ์ˆ˜์ •
1 parent 5a245b8 commit d1c57fc

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)