X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/a0e9ecd6a913a6465b500f642412daf1e1a6420b..36c18f380e2a31b532fbdd94208b559bef8d900f:/src/store/tree-picker/tree-picker.ts diff --git a/src/store/tree-picker/tree-picker.ts b/src/store/tree-picker/tree-picker.ts index a4127fa3..22e445a8 100644 --- a/src/store/tree-picker/tree-picker.ts +++ b/src/store/tree-picker/tree-picker.ts @@ -2,8 +2,8 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Tree } from "~/models/tree"; -import { TreeItemStatus } from '~/components/tree/tree'; +import { Tree } from "models/tree"; +import { TreeItemStatus } from 'components/tree/tree'; export type TreePicker = { [key: string]: Tree }; export const getTreePicker = (id: string) => (state: TreePicker): Tree | undefined => state[id];