Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
srdjan-harness committed Jan 23, 2025
1 parent 41c6340 commit 33a310e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/components/pipeline-nodes/add-node.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, Icon } from '@harnessio/ui/components'
import { Button, Icon } from '..'

export interface AddNodeProp {
onClick?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, Icon } from '@harnessio/ui/components'
import { Button, Icon } from '..'

export interface ParallelGroupNodeProps {
name?: string
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, Icon } from '@harnessio/ui/components'
import { Button, Icon } from '..'

export interface SerialGroupNodeProps {
name?: string
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/pipeline-nodes/stage-node.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, Icon } from '@harnessio/ui/components'
import { Button, Icon } from '..'

export interface StageNodeProps {
name?: string
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/pipeline-nodes/start-node.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Icon } from '@harnessio/ui/components'
import { Icon } from '..'

export function StartNode() {
return (
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/pipeline-nodes/step-node.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { cn } from '@utils/cn'

import { Button, Icon, Text } from '@harnessio/ui/components'
import { Button, Icon, Text } from '..'

export interface StepNodeProps {
name?: string
Expand Down

0 comments on commit 33a310e

Please sign in to comment.