revert "hidden threads" feat, must wait for 'filterHidden: false' API

This commit is contained in:
Tom (plebeius.eth)
2024-05-31 09:38:59 +02:00
parent d314100308
commit 6609d00e82
5 changed files with 35 additions and 138 deletions
-15
View File
@@ -1,15 +0,0 @@
import { create } from 'zustand';
interface StoreState {
showBlockedComments: boolean;
setShowBlockedComments: (show: boolean) => void;
resetShowBlockedComments: () => void;
}
const useStore = create<StoreState>((set) => ({
showBlockedComments: false,
setShowBlockedComments: (show) => set({ showBlockedComments: show }),
resetShowBlockedComments: () => set({ showBlockedComments: false }),
}));
export default useStore;