refacto(db): favorites on db

This commit is contained in:
Julien Froidefond
2025-02-14 15:50:06 +01:00
parent b71ccd6b0e
commit 313cd60e74
9 changed files with 224 additions and 44 deletions

View File

@@ -26,11 +26,11 @@ export function HomeContent({ data }: HomeContentProps) {
};
// Vérification des données pour le debug
console.log("HomeContent - Données reçues:", {
ongoingCount: data.ongoing?.length || 0,
recentlyReadCount: data.recentlyRead?.length || 0,
onDeckCount: data.onDeck?.length || 0,
});
// console.log("HomeContent - Données reçues:", {
// ongoingCount: data.ongoing?.length || 0,
// recentlyReadCount: data.recentlyRead?.length || 0,
// onDeckCount: data.onDeck?.length || 0,
// });
return (
<main className="container mx-auto px-4 py-8 space-y-12">