From 2be2a83c62fdb9cede4c7353adaf75c459b4f809 Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Tue, 24 Oct 2023 17:11:25 -0400 Subject: [PATCH] minor fix --- pages/collections/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/collections/index.tsx b/pages/collections/index.tsx index a252e1d..0df0588 100644 --- a/pages/collections/index.tsx +++ b/pages/collections/index.tsx @@ -116,7 +116,7 @@ export default function Collections() {
{sortedCollections - .filter((e) => e.ownerId !== data?.user.id) + .filter((e) => e.ownerId === data?.user.id) .map((e, i) => { return ; })}