17782: Fixes absolute import paths from '~/somedir/...' to 'somedir/...'
[arvados-workbench2.git] / src / views-components / dialog-forms / move-project-dialog.ts
index 03e474b1778074668cfedcc41a44c4f3e9335d09..0729e29c0f4e1c2b31b8146bcf0a92beddeabd2a 100644 (file)
@@ -3,13 +3,13 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import { compose } from "redux";
-import { withDialog } from "~/store/dialog/with-dialog";
+import { withDialog } from "store/dialog/with-dialog";
 import { reduxForm } from 'redux-form';
-import { PROJECT_MOVE_FORM_NAME } from '~/store/projects/project-move-actions';
-import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog';
-import { DialogMoveTo } from '~/views-components/dialog-move/dialog-move-to';
-import { moveProject } from '~/store/workbench/workbench-actions';
-import { pickerId } from '~/store/tree-picker/picker-id';
+import { PROJECT_MOVE_FORM_NAME } from 'store/projects/project-move-actions';
+import { MoveToFormDialogData } from 'store/move-to-dialog/move-to-dialog';
+import { DialogMoveTo } from 'views-components/dialog-move/dialog-move-to';
+import { moveProject } from 'store/workbench/workbench-actions';
+import { pickerId } from 'store/tree-picker/picker-id';
 
 export const MoveProjectDialog = compose(
     withDialog(PROJECT_MOVE_FORM_NAME),