Skip to content

Commit

Permalink
Merge pull request #309 from Team-Lecue/develop
Browse files Browse the repository at this point in the history
MAIN merge
  • Loading branch information
Arooming authored Apr 22, 2024
2 parents f055210 + 5698e9d commit 96baf8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/History/components/MyLecueBook/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function MyLecueBook(props: LecueBookProps) {

const deleteMutation = useDeleteMyBook();
const FavoritePostMutation = usePostFavorite();
const FavoriteDeleteMutation = useDeleteFavorite();
const FavoriteDeleteMutation = useDeleteFavorite('mypage');

const convertNoteCount = (noteNum: number) => {
setNoteCount(noteNum.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ','));
Expand Down
2 changes: 1 addition & 1 deletion src/Home/components/NoBookmarkList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const NoBookmarkList = () => {
const navigate = useNavigate();

const handleClickNavigateBtn = () => {
navigate('/mypage');
navigate('/mypage/history', { state: 2 });
};

return (
Expand Down

0 comments on commit 96baf8e

Please sign in to comment.