Skip to content

Commit c5407ad

Browse files
committed
fix lint
1 parent c6a2731 commit c5407ad

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}>
@@ -981,7 +981,7 @@ export const TableBody = /*#__PURE__*/ createBranchComponent('tablebody', <T ext
981981
// call useLoadMore here and walk up the DOM to the nearest scrollable element to set scrollRef
982982
return (
983983
<TBody
984-
{...mergeProps(filterDOMProps(props as any, { propNames: tableBodyPropNames }), rowGroupProps)}
984+
{...mergeProps(filterDOMProps(props as any, {propNames: tableBodyPropNames}), rowGroupProps)}
985985
{...renderProps}
986986
ref={ref}
987987
data-empty={isEmpty || undefined}>
@@ -1118,7 +1118,7 @@ export const Row = /*#__PURE__*/ createBranchComponent(
11181118
</TR>
11191119
)}
11201120
<TR
1121-
{...mergeProps(filterDOMProps(props as any, { propNames: rowPropNames }), rowProps, focusProps, hoverProps, draggableItem?.dragProps, focusWithinProps)}
1121+
{...mergeProps(filterDOMProps(props as any, {propNames: rowPropNames}), rowProps, focusProps, hoverProps, draggableItem?.dragProps, focusWithinProps)}
11221122
{...renderProps}
11231123
ref={ref}
11241124
data-disabled={states.isDisabled || undefined}

0 commit comments

Comments
 (0)