Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit ff1972d

Browse files
committed
update zustand
1 parent ce23477 commit ff1972d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/stateManagement/useAutomationStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { AutomationState, TableActionResponse } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
3-
import create from "zustand";
3+
import { create } from "zustand";
44
import automation_state_actions from "stateManagement/automations/AutomationStateActions";
55

66
const useAutomationStore = (view: DatabaseView) => {

src/stateManagement/useColumnsStore.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ColumnsState, TableActionResponse } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
3-
import create from "zustand";
3+
import { create } from "zustand";
44
import column_state_actions from "stateManagement/columns/ColumnsStateActions";
55

66
const useColumnsStore = (view: DatabaseView) => {

src/stateManagement/useConfigStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { FilterSettings, GlobalSettings, LocalSettings } from "cdm/SettingsModel
22
import { ConfigState, EphimeralSettings } from "cdm/TableStateInterface";
33
import { DatabaseView } from "DatabaseView";
44
import { EphimeralConfiguration } from "helpers/Constants";
5-
import create from "zustand";
5+
import { create } from "zustand";
66

77
const useConfigStore = (view: DatabaseView) => {
88
const { global_settings } = view.plugin.settings;

src/stateManagement/useDataStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DataState, TableActionResponse } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
3-
import create from "zustand";
3+
import { create } from "zustand";
44
import data_state_actions from "stateManagement/data/DataStateActions";
55

66
const useDataStore = (view: DatabaseView) => {

src/stateManagement/useRowTemplateStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { RowTemplateState } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
33
import { get_tfiles_from_folder } from "helpers/FileManagement";
4-
import create from "zustand";
4+
import { create } from "zustand";
55

66
const useRowTemplateStore = (view: DatabaseView) => {
77

src/stateManagement/useSortingStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { SortingState } from "@tanstack/react-table";
22
import { ColumnSortingState } from "cdm/TableStateInterface"
33
import { DatabaseView } from "DatabaseView";
4-
import create from "zustand"
4+
import { create } from "zustand"
55

66
const useSortingStore = (view: DatabaseView) => {
77
return create<ColumnSortingState>()(

0 commit comments

Comments
 (0)