fix: correction fileGroup lors de l'enregistrement d'un nouveau responsable

This commit is contained in:
Luc SORIGNET
2025-03-01 10:30:44 +01:00
parent c8c8941ec8
commit dce2114a79
4 changed files with 14 additions and 23 deletions

View File

@ -414,6 +414,7 @@ useEffect(()=>{
},
fees: allFeesIds,
discounts: allDiscountsds,
fileGroup: selectedFileGroup,
establishment: ESTABLISHMENT_ID
};
@ -432,6 +433,7 @@ useEffect(()=>{
})
.catch((error) => {
logger.error('Error:', error);
//deleteProfile(response.id, csrfToken);
});
}
})
@ -569,23 +571,6 @@ const columnsSubscribed = [
];
const tabs = [
{
id: 'pending',
label: t('pending'),
count: totalPending
},
{
id: 'subscribed',
label: t('subscribed'),
count: totalSubscribed
},
{
id: 'archived',
label: t('archived'),
count: totalArchives
}
];
if (isLoading) {
return <Loader />;