chore: remove unused exported catalog sort type

This commit is contained in:
plebeius
2026-03-09 21:25:35 +08:00
parent 6954b5bcc9
commit 41500a6079
+1 -1
View File
@@ -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;