From 57dd3b8446b584bc8514b2541aca2c4436904c99 Mon Sep 17 00:00:00 2001 From: yihaolee85 Date: Wed, 21 Aug 2024 10:02:15 +0800 Subject: [PATCH] Update [collectionId].tsx to fix sort order Update [collectionId].tsx to fix sort order --- app/(auth)/collections/[collectionId].tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/(auth)/collections/[collectionId].tsx b/app/(auth)/collections/[collectionId].tsx index 0cc70866..35e0bdf7 100644 --- a/app/(auth)/collections/[collectionId].tsx +++ b/app/(auth)/collections/[collectionId].tsx @@ -59,14 +59,14 @@ const page: React.FC = () => { useEffect(() => { setSortBy([ { - key: "ProductionYear", - value: "Production Year", + key: "PremiereDate", + value: "Premiere Date", }, ]); setSortOrder([ { - key: "Descending", - value: "Descending", + key: "Ascending", + value: "Ascending", }, ]); }, []);