Minor: fix typo in WebAPI error message

This commit is contained in:
Evan Hahn 2020-11-16 14:05:10 -06:00 committed by Josh Perez
parent 1e4b6df5f8
commit 72e4ec95ce

View file

@ -406,7 +406,7 @@ async function _promiseAjax(
} else if (unauthenticated) { } else if (unauthenticated) {
if (!accessKey) { if (!accessKey) {
throw new Error( throw new Error(
'_promiseAjax: mode is aunathenticated, but accessKey was not provided' '_promiseAjax: mode is unauthenticated, but accessKey was not provided'
); );
} }
// Access key is already a Base64 string // Access key is already a Base64 string