commit a5c4c577c6e59aab4e9812964a27b9fc67c28c1e parent 336249f26ac25d56f358cfd53320c6c67d4ff558 Author: Andreas Gruhler <andreas.gruhler@adfinis.com> Date: Wed, 5 Apr 2023 01:03:49 +0200 fix(heats): duplicate props Diffstat:
M | src/Heats.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Heats.js b/src/Heats.js @@ -45,7 +45,7 @@ function HeatForm({session}) { <tbody> {heats.map(h => ( <tr key={h.id}> - <td className='right'className='right'>{new Date(h.created_at).toLocaleString()}</td> + <td className='right'>{new Date(h.created_at).toLocaleString()}</td> <td>{h.name}</td> <td>{h.location}</td> <td className='right'>{h.planned_start}</td>