Skip to content

Commit

Permalink
Remove unneeded bits.
Browse files Browse the repository at this point in the history
  • Loading branch information
dakotablair committed May 6, 2024
1 parent 00cac95 commit 81d6ff9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/features/collections/data_products/Biolog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,12 @@ export const Biolog: FC<{
</tr>
<tr>
<th>Value</th>
<td> {`${cell.val}`}</td>
<td> {cell.val}</td>
</tr>
<tr>
<th>Media</th>
<td>{cell.meta?.growth_media}</td>
</tr>
{data.values.map(({ id, val }) => (
<div key={id}>{`- ${id}:${val}`}</div>
))}
</table>
</>
);
Expand Down

0 comments on commit 81d6ff9

Please sign in to comment.