feat: milestones

This commit is contained in:
Carlos Valente
2025-07-07 15:37:54 +02:00
committed by Carlos Valente
parent a7ae8598db
commit f2913971db
26 changed files with 610 additions and 77 deletions
@@ -232,9 +232,9 @@ export const useEntryActions = () => {
* Updates existing entry
*/
const updateEntry = useCallback(
async (event: Partial<OntimeEntry>) => {
async (entry: Partial<OntimeEntry>) => {
try {
await updateEntryMutation(event);
await updateEntryMutation(entry);
} catch (error) {
logAxiosError('Error updating event', error);
}