Skip to content

Commit

Permalink
Convert to string
Browse files Browse the repository at this point in the history
This only seems to fail in CI, so lets just handle it
  • Loading branch information
ewanharris committed Oct 6, 2023
1 parent b50d56c commit ce70daf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/cra-react-router/src/Users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export function Users() {
</tr>
</thead>
<tbody>
{users!.map(
{users.map(
({ name, email }: { name: string; email: string }, i: number) => (
<tr key={i}>
<tr key={i.toString()}>
<td>{name}</td>
<td>{email}</td>
</tr>
Expand Down

0 comments on commit ce70daf

Please sign in to comment.