Adds info log for interactive-editor to store

This commit is contained in:
Alicia Sykes 2021-10-27 21:24:32 +01:00
commit 08072f1fb6
3 changed files with 25 additions and 2 deletions

View file

@ -38,4 +38,9 @@ export const WarningInfoHandler = (msg, title, log) => {
statusErrorMsg(title || 'Warning', msg, log);
};
/* Titles for info logging */
export const InfoKeys = {
EDITOR: 'Interactive Editor',
};
export default ErrorHandler;