From 849bf66612a8bd288caa881fa182cfcad6fcbf47 Mon Sep 17 00:00:00 2001 From: johnnyjoy Date: Thu, 6 Feb 2025 19:38:53 +0800 Subject: [PATCH] fix: remove outdated factor --- web/src/pages/Home.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/src/pages/Home.tsx b/web/src/pages/Home.tsx index f7710a5d..baadaacc 100644 --- a/web/src/pages/Home.tsx +++ b/web/src/pages/Home.tsx @@ -43,9 +43,6 @@ const Home = () => { conditions.push(`display_time_before == ${timestampAfter + 60 * 60 * 24}`); } } - if (memoFilterStore.orderByTimeAsc) { - conditions.push(`order_by_time_asc == true`); - } if (contentSearch.length > 0) { conditions.push(`content_search == [${contentSearch.join(", ")}]`); }