From 33c6241e59324fcd7278d9ac0b61c8fef2daafe0 Mon Sep 17 00:00:00 2001 From: sylenien Date: Mon, 12 Dec 2022 14:07:25 +0100 Subject: [PATCH] fix(ui): remove log --- frontend/app/duck/user.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/duck/user.js b/frontend/app/duck/user.js index ce135fe27..1420cae45 100644 --- a/frontend/app/duck/user.js +++ b/frontend/app/duck/user.js @@ -57,6 +57,7 @@ const reducer = (state = initialState, action = {}) => { return state.set('passwordErrors', List(action.errors)) case DELETE: deleteCookie('jwt', '/', '.openreplay.com') + console.log('called') return initialState; case PUT_CLIENT.REQUEST: return state.mergeIn([ 'account' ], action.params);