diff --git a/components/CollectionCard.tsx b/components/CollectionCard.tsx index f3615e2..d4c2571 100644 --- a/components/CollectionCard.tsx +++ b/components/CollectionCard.tsx @@ -35,6 +35,8 @@ export default function CollectionCard({ collection, className }: Props) { name: "", username: "", image: "", + archiveAsScreenshot: undefined as unknown as boolean, + archiveAsPDF: undefined as unknown as boolean, }); useEffect(() => { @@ -48,6 +50,8 @@ export default function CollectionCard({ collection, className }: Props) { name: account.name, username: account.username as string, image: account.image as string, + archiveAsScreenshot: account.archiveAsScreenshot as boolean, + archiveAsPDF: account.archiveAsPDF as boolean, }); } }; @@ -70,8 +74,7 @@ export default function CollectionCard({ collection, className }: Props) { > -