fix eslint errors for Vercel deployment

This commit is contained in:
Yannick Le Duc
2025-08-25 18:48:52 +02:00
parent 535a39674c
commit 1be44503c9
9 changed files with 91 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ export const encryptionService = {
* Vérifie si une valeur est chiffrée
*/
isEncrypted(value: string): boolean {
return value && value.includes(':') && value.split(':').length === 3;
return Boolean(value && value.includes(':') && value.split(':').length === 3);
},
/**