Skip to content

Commit 12c7d77

Browse files
committed
chore: fix typo in type name
1 parent 78ce30c commit 12c7d77

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/frontend/app/stores/tree-store.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { create } from 'zustand'
22

3-
type TreestoreState = {
3+
type TreeStoreState = {
44
isLoading: boolean
55
setIsLoading: (loading: boolean) => void
66
clearConfigs: () => void
@@ -16,7 +16,7 @@ type TreestoreState = {
1616
clearExpandedItems: () => void
1717
}
1818

19-
export const useTreeStore = create<TreestoreState>((set) => ({
19+
export const useTreeStore = create<TreeStoreState>((set) => ({
2020
isLoading: true,
2121
setIsLoading: (isLoading) => set({ isLoading }),
2222
clearConfigs: () =>

0 commit comments

Comments
 (0)