renamed "LinkList" to "LinkCard"

This commit is contained in:
Daniel
2023-06-06 00:17:01 +03:30
parent eb5611c8f7
commit 35a8d74943
9 changed files with 12 additions and 13 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import LinkList from "@/components/PublicPage/LinkList";
import LinkCard from "@/components/PublicPage/LinkCard";
import getPublicCollectionData from "@/lib/client/getPublicCollectionData";
import { PublicCollectionIncludingLinks } from "@/types/global";
import { useRouter } from "next/router";
@@ -47,7 +47,7 @@ export default function PublicCollections() {
<div className="flex flex-col gap-5 my-8">
{data?.links.map((e, i) => {
return <LinkList key={i} link={e} count={i} />;
return <LinkCard key={i} link={e} count={i} />;
})}
</div>