From 17da9fa92f7e12eeab0e1f437b63c83e10575ff8 Mon Sep 17 00:00:00 2001 From: Cabecinha84 Date: Tue, 14 Jan 2025 16:38:11 +0000 Subject: [PATCH] fix eslint --- ZelBack/src/services/appsService.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ZelBack/src/services/appsService.js b/ZelBack/src/services/appsService.js index 045bb609a..230d5aa92 100644 --- a/ZelBack/src/services/appsService.js +++ b/ZelBack/src/services/appsService.js @@ -4906,7 +4906,7 @@ async function checkAppSecrets(appName, appComponentSpecs, appOwner, registratio if (normalizedComponentSecret === appComponentSecrets) { if (registration) { throw new Error( - `Provided component '${appComponentSpecs.name}' secrets are not valid (duplicate in app: '${app.name}')` + `Provided component '${appComponentSpecs.name}' secrets are not valid (duplicate in app: '${app.name}')`, ); } else if (app.name !== appName) { foundSecretsWithDifferentAppName = true; @@ -4954,7 +4954,7 @@ async function checkAppSecrets(appName, appComponentSpecs, appOwner, registratio if (message.appSpecifications.owner !== appOwner) { throw new Error( - `Provided component '${appComponentSpecs.name}' secrets are not valid (owner mismatch: '${message.appSpecifications.owner}').` + `Provided component '${appComponentSpecs.name}' secrets are not valid (owner mismatch: '${message.appSpecifications.owner}').`, ); } }