From f624dba4f9246f6f23fb881ae61b484c096e929c Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 29 Oct 2021 23:01:56 +0100 Subject: [PATCH] :exclamation: Adds status message keys to error handler --- src/utils/ErrorHandler.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/ErrorHandler.js b/src/utils/ErrorHandler.js index 4ef180dd..a0624fab 100644 --- a/src/utils/ErrorHandler.js +++ b/src/utils/ErrorHandler.js @@ -41,6 +41,7 @@ export const WarningInfoHandler = (msg, title, log) => { /* Titles for info logging */ export const InfoKeys = { EDITOR: 'Interactive Editor', + VISUAL: 'Layout & Styles', }; export default ErrorHandler;