115 add load more button to logbook mobile view #118

Merged
noahspannbauer merged 5 commits from 115-add-load-more-button-to-logbook-mobile-view into main 2026-03-21 21:57:22 -04:00
Showing only changes of commit 5950cef79e - Show all commits

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) {