From df2a48c20df598b225fd5f014868e85aa129193e Mon Sep 17 00:00:00 2001 From: matthieu Date: Tue, 24 Mar 2026 21:56:07 +0100 Subject: [PATCH] fix : remove double /api prefix in export URL Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/services/time-entries.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/services/time-entries.ts b/frontend/services/time-entries.ts index 3931dde..5c4a9d0 100644 --- a/frontend/services/time-entries.ts +++ b/frontend/services/time-entries.ts @@ -71,7 +71,7 @@ export function useTimeEntryService() { if (params.tags?.length) { params.tags.forEach(id => query.append('tags[]', String(id))) } - return `/api/time_entries/export?${query.toString()}` + return `/time_entries/export?${query.toString()}` } async function downloadExport(params: {