Sort out typo in error message (#3307)

This commit is contained in:
Tom 2022-05-17 12:00:26 +02:00 committed by GitHub
parent 17f98384a0
commit 680c9684cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -208,7 +208,7 @@ export async function checkPermissionsForExecution(
// then both arrays (allowed credentials vs used credentials)
// must be the same length
if (ids.length !== credentialCount) {
throw new Error('One or more of the used credentials are not accessable.');
throw new Error('One or more of the used credentials are not accessible.');
}
return true;
}