fix: remove updateGlobals warning

This commit is contained in:
Yann Braga 2021-05-16 16:51:02 +02:00
parent 2626146dbe
commit 0b4cc5d386

View File

@ -37,8 +37,6 @@ export const init: ModuleFn = ({ store, fullAPI }) => {
const currentGlobals = store.getState()?.globals;
if (!deepEqual(globals, currentGlobals)) {
store.setState({ globals });
} else {
logger.info('Tried to update globals but the old and new values are equal.');
}
};