From 41500a6079decf8034336e2c278383bb900f7fa4 Mon Sep 17 00:00:00 2001 From: plebeius Date: Mon, 9 Mar 2026 21:25:35 +0800 Subject: [PATCH] chore: remove unused exported catalog sort type --- src/stores/use-sorting-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/use-sorting-store.ts b/src/stores/use-sorting-store.ts index adce36dd..d60cc18a 100644 --- a/src/stores/use-sorting-store.ts +++ b/src/stores/use-sorting-store.ts @@ -1,7 +1,7 @@ import { create } from 'zustand'; /** Catalog-only sort state. Used by catalog view sort selector. */ -export type CatalogSortType = 'active' | 'new' | 'replyCount'; +type CatalogSortType = 'active' | 'new' | 'replyCount'; interface SortingStore { sortType: CatalogSortType;