Skip to content

Commit

Permalink
fix/ props 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sonagi98 committed Jul 24, 2023
1 parent b8835f4 commit 38eeaae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/src/pages/MyPage/UI/ShortMovieList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ interface movieListProps {
}

interface MoviePosterProps {
movieId: string;
title: string;
releaseDate: string;
score: number;
Expand All @@ -18,6 +19,7 @@ const shortMovieList: React.FC<movieListProps> = ({ movies }) => {
{movies.map((movie: MoviePosterProps, index: number) => (
<MoviePoster
key={index}
movieId={movie.movieId}
title={movie.title}
releaseDate={movie.releaseDate}
score={movie.score}
Expand Down
1 change: 1 addition & 0 deletions client/src/pages/MyPage/UserInfo/InfoEditModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const InfoEditModal = ({ setModalOpen, username, password, imgUrl }: InfoProps)
},
})
.then((res) => {
console.log(res);
console.log('수정 완료');
})
.catch((err) => {
Expand Down

0 comments on commit 38eeaae

Please sign in to comment.