Skip to content

Commit 85577eb

Browse files
committed
lint
1 parent d71f1a8 commit 85577eb

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

apps/sim/app/workspace/[workspaceId]/components/product-tour/product-tour.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { usePathname } from 'next/navigation'
66
import { navTourSteps } from '@/app/workspace/[workspaceId]/components/product-tour/nav-tour-steps'
77
import type { TourState } from '@/app/workspace/[workspaceId]/components/product-tour/tour-shared'
88
import {
9+
getSharedJoyrideProps,
910
TourStateContext,
1011
TourTooltipAdapter,
11-
getSharedJoyrideProps,
1212
} from '@/app/workspace/[workspaceId]/components/product-tour/tour-shared'
1313
import { useTour } from '@/app/workspace/[workspaceId]/components/product-tour/use-tour'
1414

apps/sim/app/workspace/[workspaceId]/components/product-tour/workflow-tour.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { useMemo } from 'react'
44
import dynamic from 'next/dynamic'
55
import type { TourState } from '@/app/workspace/[workspaceId]/components/product-tour/tour-shared'
66
import {
7+
getSharedJoyrideProps,
78
TourStateContext,
89
TourTooltipAdapter,
9-
getSharedJoyrideProps,
1010
} from '@/app/workspace/[workspaceId]/components/product-tour/tour-shared'
1111
import { useTour } from '@/app/workspace/[workspaceId]/components/product-tour/use-tour'
1212
import { workflowTourSteps } from '@/app/workspace/[workspaceId]/components/product-tour/workflow-tour-steps'

apps/sim/components/emcn/components/popover/popover.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -628,11 +628,7 @@ const PopoverContent = React.forwardRef<
628628
...style,
629629
}}
630630
>
631-
{showArrow ? (
632-
<div className='flex-1 overflow-auto'>{children}</div>
633-
) : (
634-
children
635-
)}
631+
{showArrow ? <div className='flex-1 overflow-auto'>{children}</div> : children}
636632
{showArrow && (
637633
<PopoverPrimitive.Arrow width={14} height={7} asChild>
638634
<svg

0 commit comments

Comments
 (0)