refactor(core): remove collection atom (#5832)

This commit is contained in:
EYHN
2024-02-27 03:50:56 +00:00
parent ad9b0303c4
commit 5cd488fe1d
41 changed files with 644 additions and 962 deletions

View File

@@ -48,9 +48,6 @@ export const recentPageIdsBaseAtom = atomWithStorage<string[]>(
[]
);
export type PageModeOption = 'all' | 'page' | 'edgeless';
export const allPageModeSelectAtom = atom<PageModeOption>('all');
export type AllPageFilterOption = 'docs' | 'collections' | 'tags';
export const allPageFilterSelectAtom = atom<AllPageFilterOption>('docs');