Skip to content

Commit

Permalink
a table row was forgotten somewhere along the way
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotFriend committed Feb 19, 2025
1 parent 50d1855 commit e60e390
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Homepage/PathfindingTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export default function PathfindingTable({ children }) {
return (
<table className={styles.PathfindingTable}>
<thead>
<th colSpan={3} {...thead.props.children.props.children[0].props}></th>
<tr>
<th colSpan={3} {...thead.props.children.props.children[0].props}></th>
</tr>
</thead>
<tbody>
{React.Children.map(rows, row => <PathfindingRow row={row} />)}
Expand Down

0 comments on commit e60e390

Please sign in to comment.