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

14
cleanup-apps.ps1 Executable file
View File

@@ -0,0 +1,14 @@
# Script pour nettoyer les applications de démonstration
Write-Host "Nettoyage des applications de démonstration..."
$appsPath = "app/(main)/apps"
if (Test-Path $appsPath) {
Write-Host "Suppression du dossier $appsPath..."
Remove-Item -Recurse -Force $appsPath -ErrorAction SilentlyContinue
Write-Host "Dossier supprimé avec succès."
} else {
Write-Host "Le dossier $appsPath n'existe pas."
}
Write-Host "Nettoyage terminé."