We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78ce30c commit 12c7d77Copy full SHA for 12c7d77
1 file changed
src/main/frontend/app/stores/tree-store.ts
@@ -1,6 +1,6 @@
1
import { create } from 'zustand'
2
3
-type TreestoreState = {
+type TreeStoreState = {
4
isLoading: boolean
5
setIsLoading: (loading: boolean) => void
6
clearConfigs: () => void
@@ -16,7 +16,7 @@ type TreestoreState = {
16
clearExpandedItems: () => void
17
}
18
19
-export const useTreeStore = create<TreestoreState>((set) => ({
+export const useTreeStore = create<TreeStoreState>((set) => ({
20
isLoading: true,
21
setIsLoading: (isLoading) => set({ isLoading }),
22
clearConfigs: () =>
0 commit comments