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

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;
}