Skip to content

Commit deb5e60

Browse files
committed
fix: change absolute imports
1 parent e25cb45 commit deb5e60

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/pluggableWidgets/gallery-web/src/stores/GalleryStore.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import { generateUUID } from "@mendix/widget-plugin-platform/framework/generate-
99
import { SortAPI } from "@mendix/widget-plugin-sorting/react/context";
1010
import { SortStoreHost } from "@mendix/widget-plugin-sorting/stores/SortStoreHost";
1111
import { EditableValue, ListValue } from "mendix";
12-
import { AttributeStorage } from "src/stores/AttributeStorage";
13-
import { BrowserStorage } from "src/stores/BrowserStorage";
14-
import { GalleryPersistentStateController } from "src/stores/GalleryPersistentStateController";
15-
import { ObservableStorage } from "src/typings/storage";
1612
import { PaginationEnum, StateStorageTypeEnum } from "../../typings/GalleryProps";
1713
import { QueryParamsController } from "../controllers/QueryParamsController";
14+
import { ObservableStorage } from "../typings/storage";
15+
import { AttributeStorage } from "./AttributeStorage";
16+
import { BrowserStorage } from "./BrowserStorage";
17+
import { GalleryPersistentStateController } from "./GalleryPersistentStateController";
1818

1919
interface DynamicProps {
2020
datasource: ListValue;

0 commit comments

Comments
 (0)