diff --git a/app/src/frontend/building/edit-history/edit-history-latest.tsx b/app/src/frontend/building/edit-history/edit-history-latest.tsx index 2fff6ff3..88817271 100644 --- a/app/src/frontend/building/edit-history/edit-history-latest.tsx +++ b/app/src/frontend/building/edit-history/edit-history-latest.tsx @@ -27,9 +27,14 @@ const EditHistoryLatest: React.FunctionComponent = (prop fetchData(); // define and call, because effect cannot return anything and an async fn always returns a Promise } }, [props.building]); // only re-run effect on building prop change + return ( <> - + ); };