From 806ecf73854bd804f9b67079e97fe4c7c7ef3427 Mon Sep 17 00:00:00 2001 From: Alex Borys Date: Thu, 4 Feb 2021 13:21:08 +0200 Subject: [PATCH] fix: typo in message in simple-authentication.js (#707) `lib/middleware/simple-authentication.js` --- lib/middleware/simple-authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/middleware/simple-authentication.js b/lib/middleware/simple-authentication.js index e7b90728b2..4ce4c9d8d6 100644 --- a/lib/middleware/simple-authentication.js +++ b/lib/middleware/simple-authentication.js @@ -34,7 +34,7 @@ function unsecureAuthentication(basePath = '', app) { path: `${basePath}/api/admin/login`, type: 'unsecure', message: - 'You have to indentify yourself in order to use Unleash.', + 'You have to identify yourself in order to use Unleash.', }), ) .end();