fix: Resolve TypeScript errors in page.tsx and phases-chantier/page.tsx

This commit is contained in:
dahoud
2025-10-15 20:01:04 +00:00
parent 763ab81da3
commit aed2ce0182
22 changed files with 152 additions and 118 deletions

View File

@@ -315,9 +315,9 @@ const FactureTemplatesPage = () => {
);
const typeBodyTemplate = (rowData: FactureTemplate) => (
<Tag
value={rowData.type}
severity={rowData.type === 'FACTURE' ? 'primary' : 'info'}
<Tag
value={rowData.type}
severity={rowData.type === 'FACTURE' ? 'success' : 'info'}
/>
);