Skip to content

Commit

Permalink
fix: 🐛 correct errors introduced in documentation due to React 18 upg…
Browse files Browse the repository at this point in the history
…rade
  • Loading branch information
CourtHive committed Mar 22, 2024
1 parent 18ef19c commit e1ede83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/docs/components/RenderCSV.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const RenderCSV = ({ data, rowJoiner, tableHeight = '300px' }) => {
{rows.slice(1).map((row, i) => (
<tr key={i}>
{row.split(',').map((column, c) => (
<td style="white-space:nowrap" key={`${i}-${c}`}>
<td style={{ whiteSpace: 'nowrap' }} key={`${i}-${c}`}>
{column}
</td>
))}
Expand Down

0 comments on commit e1ede83

Please sign in to comment.