We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43432e7 + 1ecb805 commit 9c6c4beCopy full SHA for 9c6c4be
src/app/auth/signin/page.jsx
@@ -63,7 +63,7 @@ export default function Page() {
63
}
64
65
setAccessToken(access_token);
66
- router.push('/main');
+ router.push('/study');
67
} catch (error) {
68
console.error('로그인 실패:', error);
69
alert('로그인 중 오류가 발생했습니다.');
src/hooks/useAuthenticatedApi.js
@@ -39,7 +39,7 @@ export const useAuthenticatedApi = () => {
39
//로그인 이후 api 요청
40
const apiClient = useMemo(() => {
41
const client = axios.create({
42
- baseURL: 'https://gdgocinha.site/',
+ baseURL: 'https://gdgocinha.com/api',
43
headers: { 'Content-Type': 'application/json' },
44
withCredentials: true,
45
});
0 commit comments