-
+
);
diff --git a/pages/collections/index.tsx b/pages/collections/index.tsx
index 8a05954..6943c5a 100644
--- a/pages/collections/index.tsx
+++ b/pages/collections/index.tsx
@@ -15,7 +15,7 @@ import useModalStore from "@/store/modals";
import SortDropdown from "@/components/SortDropdown";
import { Sort } from "@/types/global";
import useSort from "@/hooks/useSort";
-import New from "@/components/Modals/New";
+import NewCollectionModal from "@/components/Modals/NewCollectionModal";
export default function Collections() {
const { collections } = useCollectionStore();
@@ -121,7 +121,7 @@ export default function Collections() {
})}
setNewModalIsOpen(true)}
>
New Collection
@@ -158,11 +158,10 @@ export default function Collections() {
>
) : undefined}
-
);