Skip to content

Commit

Permalink
chore: fix import paths
Browse files Browse the repository at this point in the history
Closes #1106
  • Loading branch information
jarekdanielak committed Jan 23, 2025
1 parent d1623fe commit a99ee04
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/provider/zeebe/properties/ActiveElementsProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import {

import { isFeelEntryEdited } from '@bpmn-io/properties-panel';

import { useService } from 'src/hooks';
import { useService } from '../../../hooks';

import { FeelEntryWithVariableContext } from 'src/entries/FeelEntryWithContext';
import { FeelEntryWithVariableContext } from '../../../entries/FeelEntryWithContext';

import {
getExtensionElementsList,
addExtensionElements
} from 'src/utils/ExtensionElementsUtil';
} from '../../../utils/ExtensionElementsUtil';

import { createElement } from 'src/utils/ElementUtil';
import { createElement } from '../../../utils/ElementUtil';

export function ActiveElementsProps(props) {
const {
Expand Down

0 comments on commit a99ee04

Please sign in to comment.