Skip to content

Commit

Permalink
chore: Fix import issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lordrip committed Nov 21, 2024
1 parent fb64a68 commit 51012ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Pipe } from '@kaoto/camel-catalog/types';
import { get } from 'lodash';
import { set } from 'lodash';
import { get, set } from 'lodash';
import { getCamelRandomId } from '../../../camel-utils/camel-random-id';
import { SchemaService } from '../../../components/Form/schema.service';
import {
Expand Down
3 changes: 1 addition & 2 deletions packages/ui/src/utils/get-array-property.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { get } from 'lodash';
import { set } from 'lodash';
import { get, set } from 'lodash';

export const getArrayProperty = (model: object, path: string): unknown[] => {
let stepsArray: unknown[] | undefined = get(model, path);
Expand Down

0 comments on commit 51012ff

Please sign in to comment.