Skip to content

Commit

Permalink
refactor: fix remaining relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Jan 25, 2024
1 parent 3281d38 commit e759eac
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useState } from 'react';
import AssetModules from '../../shared/AssetModules';
import VectorLayer from 'ol/layer/Vector';
import CoreModules from '../../shared/CoreModules.js';
import { CreateProjectActions } from '../../store/slices/CreateProjectSlice';
import AssetModules from '@/shared/AssetModules';
import CoreModules from '@/shared/CoreModules.js';
import { CreateProjectActions } from '@/store/slices/CreateProjectSlice';

const MapControlComponent = ({ map, hasEditUndo }) => {
const dispatch = CoreModules.useAppDispatch();
Expand Down

0 comments on commit e759eac

Please sign in to comment.