Skip to content

Commit c67c13c

Browse files
ci: apply automated fixes
1 parent 0d9a430 commit c67c13c

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

examples/react/composable-tables/src/components/cell-components.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,10 @@ export function PriceCell() {
8989
return (
9090
<span className="price">
9191
$
92-
{cell
93-
.getValue()
94-
.toLocaleString(undefined, {
95-
minimumFractionDigits: 2,
96-
maximumFractionDigits: 2,
97-
})}
92+
{cell.getValue().toLocaleString(undefined, {
93+
minimumFractionDigits: 2,
94+
maximumFractionDigits: 2,
95+
})}
9896
</span>
9997
)
10098
}

examples/react/kitchen-sink-shadcn/src/components/ui/calendar.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,12 @@ function Calendar({
6161
}}
6262
components={{
6363
Chevron: ({ orientation, className, ...props }) => {
64-
const Icon = orientation === 'left' || orientation === 'right'
65-
? (orientation === 'left' ? ChevronLeft : ChevronRight)
66-
: ChevronLeft
64+
const Icon =
65+
orientation === 'left' || orientation === 'right'
66+
? orientation === 'left'
67+
? ChevronLeft
68+
: ChevronRight
69+
: ChevronLeft
6770
return <Icon className={cn('h-4 w-4', className)} {...props} />
6871
},
6972
}}

0 commit comments

Comments
 (0)