fix(shifts): fix the type update

This commit is contained in:
Matthieu Haineault 2025-11-06 14:42:39 -05:00
parent 809209533a
commit 7817c3b758

View File

@ -304,7 +304,7 @@ export class ShiftsUpsertService {
date: update.date,
start_time: update.start_time,
end_time: update.end_time,
bank_code_id: exist_shift.bank_code_id,
bank_code_id: update.bank_code_id,
};
return { update, exist_shift, normed };
});