Skip to content

Commit

Permalink
hotfix : 콘솔로그 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsuhyeon0119 committed Feb 2, 2024
1 parent 82ea5a0 commit ef1a5f8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/ContentList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export type ContentListProps = {
};

function ContentCell(content: MovieType, rank: number) {
console.log(content.title_ko, content.average_rate);
return (
<li key={rank}>
<Link to={`/contents/${content.movieCD}`}>
Expand Down Expand Up @@ -114,7 +113,6 @@ export default function ContentList({ title, order }: ContentListProps) {
getContentListRequest(order, accessToken ?? undefined)
.then(defaultResponseHandler)
.then((data) => {
console.log("boxoffice : ", data);
setContents(
data.map(
(movieRes: {
Expand All @@ -138,7 +136,6 @@ export default function ContentList({ title, order }: ContentListProps) {
getContentListRequest(order, accessToken ?? undefined)
.then(defaultResponseHandler)
.then((data) => {
console.log(data);
setContents(
data.map((movie: MovieType) => {
return {
Expand Down

0 comments on commit ef1a5f8

Please sign in to comment.