Skip to content

Commit

Permalink
working fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dgershman committed Mar 21, 2024
1 parent e32f9d9 commit da417b3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,14 @@ function App() {
<tr>
<th>Server</th>
<th>Version</th>
{/* Add more table headers if needed */}
</tr>
</thead>
<tbody>
{yapServerData.map(({ name, data }) => (
data.map((serverData) => (
<tr key={name}>
<td>{name}</td>
<td>{serverData.value !== null && serverData.value.version !== null ? serverData.value.version : ""}</td>
<td>{serverData.value !== undefined && serverData.value.version !== undefined ? serverData.value.version : ""}</td>
</tr>
))
))}
Expand Down

0 comments on commit da417b3

Please sign in to comment.