Skip to content

Commit 732825e

Browse files
author
Jerome Sonnet (ito-invest-lu)
authored
fix : type roow -> row (#393)
1 parent 88bd3e5 commit 732825e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/list-elements/Table/TableRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const TableRow = React.forwardRef<HTMLTableRowElement, React.HTMLAttributes<HTML
1010
const { children, className, ...other } = props;
1111
return (
1212
<>
13-
<tr ref={ref} className={twMerge(makeRowClassName("roow"), className)} {...other}>
13+
<tr ref={ref} className={twMerge(makeRowClassName("row"), className)} {...other}>
1414
{children}
1515
</tr>
1616
</>

0 commit comments

Comments
 (0)