fix: correct Promise.allS to Promise.all in fetchWeekData function
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-04-30 09:05:26 +02:00
parent 061d601911
commit 2515c0d926
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ const fetchWeekData = async () => {
week: selectedWeekNumber.value,
};
try {
const [{ data: mailData }, { data: countData }] = await Promise.allS([
const [{ data: mailData }, { data: countData }] = await Promise.all([
axios.get(`Workers/${route.params.id}/mail`, {
params: { filter: { where } },
}),