Skip to content

Commit

Permalink
Style : 불필요한 console.log 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
kanglocal committed Feb 4, 2024
1 parent f39effc commit 37b1606
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as styles from './RankList.css';
import LinkPreview from '@/components/LinkPreview/LinkPreview';
import VideoEmbed from '@/components/VideoEmbed/VideoEmbed';
import CrownIcon from '/public/icons/crown.svg';
import Image from 'next/image';

interface RankListProps {
listData: ListItemProps[];
Expand Down Expand Up @@ -63,7 +62,6 @@ function EmbedComponent({ link }: { link: string }) {
}
function DetailList({ listData }: RankListProps) {
return listData.map((item, index) => {
console.log(index);
return (
<div key={item.id} className={styles.detailItemWrapper}>
<div className={styles.rankAndTitle}>
Expand Down

0 comments on commit 37b1606

Please sign in to comment.