Skip to content

Commit

Permalink
Use full path imports for easier shadowing
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffersonBledsoe committed Feb 13, 2025
1 parent e502bd3 commit 2f21af3
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, { useEffect, useState } from 'react';
import { useEffect, useState } from 'react';
import { useIntl } from 'react-intl';
import cloneDeep from 'lodash/cloneDeep';
import map from 'lodash/map';
import EditBlock from './Edit';
import EditBlock from '@plone/volto/components/manage/Blocks/Block/Edit';
import DragDropList from '@plone/volto/components/manage/DragDropList/DragDropList';
import {
getBlocks,
Expand All @@ -29,7 +29,7 @@ import { useDispatch } from 'react-redux';
import config from '@plone/volto/registry';
import { createPortal } from 'react-dom';

import Order from './Order/Order';
import Order from '@plone/volto/components/manage/Blocks/Block/Order/Order';

const BlocksForm = (props) => {
const {
Expand Down

0 comments on commit 2f21af3

Please sign in to comment.