From 0561548ffa4187927ffc52fec091960787d5b516 Mon Sep 17 00:00:00 2001 From: z0ccc Date: Thu, 30 Sep 2021 10:02:36 -0400 Subject: [PATCH] Fixed navigator value issue --- frontend/src/utils/navigator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/navigator.js b/frontend/src/utils/navigator.js index 07f66db..fb4ce97 100644 --- a/frontend/src/utils/navigator.js +++ b/frontend/src/utils/navigator.js @@ -173,7 +173,7 @@ const checkNavigatorValue = (key) => { // eslint-disable-next-line no-unused-vars const { value } = Object.getOwnPropertyDescriptor(Navigator.prototype, key); } catch (err) { - return 'Failed Navigator.prototype'; + return 'Failed Navigator value'; } return null; };