Skip to content

Commit

Permalink
Merge pull request #263 from ThePhisch/patch-262-nonboolean_stacked
Browse files Browse the repository at this point in the history
Components: Fixed "Received ... for non-boolean attribute `stacked`"
  • Loading branch information
ThePhisch authored Jul 19, 2023
2 parents cc62adb + b10b39e commit ab4c712
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type TableFooterProps<T> = JSX.IntrinsicElements["tfoot"] & {
}

export function TableFooter<T>(props: TableFooterProps<T>) {
const { className, ...otherprops } = props
const { stacked, className, ...otherprops } = props

return (
<tfoot
Expand Down

0 comments on commit ab4c712

Please sign in to comment.