fixing logbook page responsiveness

This commit is contained in:
2026-03-21 20:28:20 -05:00
parent bde20ff73b
commit 5950cef79e

View File

@@ -32,7 +32,7 @@ const LogForm = () => {
const response: AxiosResponse = await httpClient.get(
`api/logs/${logbookContext.state.selectedLogId}`
);
const log = response.data.entities[0];
const log = response.data;
reset(log);
} catch (error) {