Skip to content

Commit

Permalink
Merge pull request #361 from oduck-team/style/352
Browse files Browse the repository at this point in the history
chore: thunmbnail 데이터 확인
  • Loading branch information
presentKey authored Mar 5, 2024
2 parents 21caab7 + b8df534 commit 41c6569
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/features/animes/components/AnimeCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ export default function AnimeCard({
onClick,
display = "default",
}: AnimeCardProps) {
console.log("animCard");
console.log(title, thumbnail);

return (
<AnimeCardContainer
onClick={(e: React.MouseEvent) => onClick(id, e)}
Expand Down
3 changes: 3 additions & 0 deletions src/features/animes/components/AnimeRanking/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ export default function AnimeRanking({ title }: AnimeRankingProps) {
}
};

console.log("animeRanking");
console.log(animes);

return (
<>
{isLoading && <AnimeRankingLoading />}
Expand Down
3 changes: 3 additions & 0 deletions src/features/animes/routes/List/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ export default function AnimeList() {
enabled: animesQuery.hasNextPage,
});

console.log("uniqueAnimesQueryData");
console.log(uniqueAnimesQueryData.pages);

return (
<>
<Head
Expand Down

0 comments on commit 41c6569

Please sign in to comment.