From 705c0b0e4c4942aab99f4e544a2467335b295721 Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Fri, 8 May 2026 16:54:34 +0330 Subject: [PATCH] Fix products sort filter --- frontend/constants/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/constants/index.ts b/frontend/constants/index.ts index b8f540a..09a644d 100644 --- a/frontend/constants/index.ts +++ b/frontend/constants/index.ts @@ -132,6 +132,6 @@ export const NAV_LINKS = [ export const PRODUCTS_SORTS = [ { title: "جدیدترین ها", value: "newest" }, - { title: "گران ترین ها", value: "price" }, - { title: "ارزان ترین ها", value: "-price" }, + { title: "گران ترین ها", value: "-price" }, + { title: "ارزان ترین ها", value: "price" }, ];