fix(approvals): remove one slash in route because YEP

This commit is contained in:
Nic D 2026-01-21 10:44:05 -05:00
parent c1e6f262d1
commit 9b1bfc9068

View File

@ -20,6 +20,6 @@ export const timesheetApprovalService = {
},
subscribeToPayPeriodObservable: (): EventSource => {
return new EventSource(`${import.meta.env.VITE_TARGO_BACKEND_URL}/pay-periods/subscribe`);
return new EventSource(`${import.meta.env.VITE_TARGO_BACKEND_URL}pay-periods/subscribe`);
},
};