fix: Update PrimeReact and fix all compilation errors

This commit is contained in:
Lions Dev
2025-10-13 05:18:02 +02:00
parent 6ebca4945c
commit 96eb956b0b
793 changed files with 11998 additions and 10690 deletions

10
app/(main)/planning/equipes/page.tsx Normal file → Executable file
View File

@@ -620,7 +620,7 @@ const EquipesPage = () => {
<Tag key={specialite} value={specialite} severity="info" />
))}
{(rowData.specialites?.length || 0) > 2 && (
<Tag value={`+${(rowData.specialites?.length || 0) - 2}`} severity="secondary" />
<Tag value={`+${(rowData.specialites?.length || 0) - 2}`} severity={"secondary" as any} />
)}
</div>
);
@@ -642,7 +642,7 @@ const EquipesPage = () => {
<Button
icon="pi pi-pencil"
size="small"
severity="secondary"
severity={"secondary" as any}
outlined
onClick={() => editEquipe(rowData)}
/>
@@ -718,7 +718,7 @@ const EquipesPage = () => {
<Button
icon="pi pi-pencil"
size="small"
severity="secondary"
severity={"secondary" as any}
outlined
onClick={() => editEmploye(rowData)}
/>
@@ -1351,4 +1351,6 @@ const EquipesPage = () => {
);
};
export default EquipesPage;
export default EquipesPage;