Skip to content

Commit

Permalink
chore: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Aug 29, 2024
1 parent 768c740 commit e61d488
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/editor-ui/src/__tests__/data/canvas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import type {
} from '@/types';
import { CanvasConnectionMode, CanvasNodeRenderType } from '@/types';
import { NodeConnectionType } from 'n8n-workflow';
import { createEventBus, EventBus } from 'n8n-design-system';
import type { EventBus } from 'n8n-design-system';
import { createEventBus } from 'n8n-design-system';

export function createCanvasNodeData({
id = 'node',
Expand Down
2 changes: 1 addition & 1 deletion packages/editor-ui/src/types/canvas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type { DefaultEdge, Node, NodeProps, Position } from '@vue-flow/core';
import type { IExecutionResponse, INodeUi } from '@/Interface';
import type { Ref } from 'vue';
import type { PartialBy } from '@/utils/typeHelpers';
import { EventBus } from 'n8n-design-system';
import type { EventBus } from 'n8n-design-system';

export type CanvasConnectionPortType = NodeConnectionType;

Expand Down

0 comments on commit e61d488

Please sign in to comment.