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
2 changes: 1 addition & 1 deletion view/next-project/src/components/auth/SignInView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function SignInView() {
};
setAuth(authData);
setUser(userRes);
Router.push('/purchaseorders');
Router.push('/my_page');
} else {
alert(
'ログインに失敗しました。メールアドレスもしくはパスワードが間違っている可能性があります',
Expand Down
2 changes: 1 addition & 1 deletion view/next-project/src/constants/linkItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const MyPageLinkItems: LinkItemProps[] = [
{
name: 'マイページ',
icon: <MdFaceUnlock className='mx-2 text-xl' />,
href: '/mypage',
href: '/my_page',
isParent: false,
},
];
Loading