Skip to content

Commit ff69cf4

Browse files
committed
fix lint
1 parent beef82c commit ff69cf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/react-aria-components/src/Table.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ export const TableHeader = /*#__PURE__*/ createBranchComponent(
589589

590590
return (
591591
<THead
592-
{...mergeProps(filterDOMProps(props as any, { propNames: tableHeaderPropNames }), rowGroupProps, hoverProps)}
592+
{...mergeProps(filterDOMProps(props as any, {propNames: tableHeaderPropNames}), rowGroupProps, hoverProps)}
593593
{...renderProps}
594594
ref={ref}
595595
data-hovered={isHovered || undefined}>
@@ -979,7 +979,7 @@ export const TableBody = /*#__PURE__*/ createBranchComponent('tablebody', <T ext
979979
// call useLoadMore here and walk up the DOM to the nearest scrollable element to set scrollRef
980980
return (
981981
<TBody
982-
{...mergeProps(filterDOMProps(props as any, { propNames: tableBodyPropNames }), rowGroupProps)}
982+
{...mergeProps(filterDOMProps(props as any, {propNames: tableBodyPropNames}), rowGroupProps)}
983983
{...renderProps}
984984
ref={ref}
985985
data-empty={collection.size === 0 || undefined}>
@@ -1116,7 +1116,7 @@ export const Row = /*#__PURE__*/ createBranchComponent(
11161116
</TR>
11171117
)}
11181118
<TR
1119-
{...mergeProps(filterDOMProps(props as any, { propNames: rowPropNames }), rowProps, focusProps, hoverProps, draggableItem?.dragProps, focusWithinProps)}
1119+
{...mergeProps(filterDOMProps(props as any, {propNames: rowPropNames}), rowProps, focusProps, hoverProps, draggableItem?.dragProps, focusWithinProps)}
11201120
{...renderProps}
11211121
ref={ref}
11221122
data-disabled={states.isDisabled || undefined}

0 commit comments

Comments
 (0)