Skip to content

Commit 120e9a3

Browse files
committed
fix lint
1 parent bbc9202 commit 120e9a3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/control-bar/components/deploy-modal/deploy-modal.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -596,13 +596,13 @@ export function DeployModal({
596596
<thead className='border-b bg-muted/50'>
597597
<tr>
598598
<th className='w-10' />
599-
<th className='px-4 py-2 text-left text-xs font-medium text-muted-foreground'>
599+
<th className='px-4 py-2 text-left font-medium text-muted-foreground text-xs'>
600600
Version
601601
</th>
602-
<th className='px-4 py-2 text-left text-xs font-medium text-muted-foreground'>
602+
<th className='px-4 py-2 text-left font-medium text-muted-foreground text-xs'>
603603
Deployed By
604604
</th>
605-
<th className='px-4 py-2 text-left text-xs font-medium text-muted-foreground'>
605+
<th className='px-4 py-2 text-left font-medium text-muted-foreground text-xs'>
606606
Created
607607
</th>
608608
<th className='w-10' />
@@ -614,7 +614,7 @@ export function DeployModal({
614614
.map((v) => (
615615
<tr
616616
key={v.id}
617-
className='hover:bg-muted/30 transition-colors cursor-pointer'
617+
className='cursor-pointer transition-colors hover:bg-muted/30'
618618
onClick={() => openVersionPreview(v.version)}
619619
>
620620
<td className='px-4 py-2.5'>

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/workflow-block/workflow-block.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ export function WorkflowBlock({ id, data }: NodeProps<WorkflowBlockProps>) {
789789
/>
790790
</div>
791791
</TooltipTrigger>
792-
<TooltipContent side='top' className='py-2 px-3'>
792+
<TooltipContent side='top' className='px-3 py-2'>
793793
<span className='text-sm'>
794794
{childIsDeployed
795795
? isLoadingChildVersion

0 commit comments

Comments
 (0)