Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"type-hangul": "^0.2.4"
},
"devDependencies": {
"@types/node": "^22.15.17",
"@types/react": "^19.1.4",
"@types/node": "22.15.21",
"@types/react": "19.1.5",
"eslint": "^8",
"eslint-config-next": "15.0.2",
"postcss": "^8",
Expand Down
2 changes: 1 addition & 1 deletion src/components/auth/screen/AuthLogin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function AuthLogin({ router, onSubmit, errors, password, setPassw
</Form>
<Button
onPress={() => {
router.push('/signup');
router.push('/auth/signup');
}}
color='success'
className='!mt-[15px] h-[48px] mobile:h-[44px] w-full rounded-full !bg-white'
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/common/MenuHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function MenuHeader() {
const menuItems = [
{ name: "스터디", href: "/study" },
{ name: "공지사항", href: "#", onClick: () => alert('준비중입니다.') },
{ name: "프로젝트", href: "#", onClick: () => alert('준비중입니다.') },
{ name: "프로젝트", href: "https://solution.gdgocinha.com" },
{ name: "멤버", href: "#", onClick: () => alert('준비중입니다.') },
{ name: "로그아웃", href: "#", onClick: handleLogout }
];
Expand Down
2 changes: 1 addition & 1 deletion src/services/auth/signin/google/GoogleAuth.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const GoogleAuthComponent = () => {
alert('회원 정보가 없습니다. 회원가입을 완료해주세요.');
sessionStorage.setItem('signup_email', email);
sessionStorage.setItem('signup_name', name);
router.push('/signup');
router.push('/auth/signup');
}
})
.catch(() => {
Expand Down
Loading