diff --git a/Jenkinsfile b/Jenkinsfile index 385b2c6aad..de7e9a1c0b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ pipeline { ansiColor('xterm') } parameters { - string(name: 'CORE_VERSION', defaultValue: '4.0.1') + string(name: 'CORE_VERSION', defaultValue: '4.0.2') string(name: 'SERVICE_BRANCH_NAME', defaultValue: 'development') } stages { diff --git a/setup/react/app/MainRouter.js b/setup/react/app/MainRouter.js index 3337e38f36..951503a8b4 100644 --- a/setup/react/app/MainRouter.js +++ b/setup/react/app/MainRouter.js @@ -29,7 +29,10 @@ const MainRouter = ({ history }) => { if (event.name === EVENTS.SESSION_REQUEST) { const method = event.meta?.params?.request?.method; - if (method === SIGNING_METHODS.SIGN_MESSAGE || method === SIGNING_METHODS.SIGN_RAW_MESSAGE) { + if ( + method === SIGNING_METHODS.SIGN_MESSAGE.key || + method === SIGNING_METHODS.SIGN_RAW_MESSAGE.key + ) { showRequestModal('requestSignMessageDialog', event); } else { showRequestModal('requestView', event);