Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Jan 14, 2025
1 parent 965f86e commit 17da9fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ZelBack/src/services/appsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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}').`,
);
}
}
Expand Down

0 comments on commit 17da9fa

Please sign in to comment.