diff --git a/src/store/index.js b/src/store/index.js index f3b2f87b2..8e981eeb1 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1808,7 +1808,10 @@ export const actions = { }); // clear the state if the existing EON does not equal what is returned from loadSession - if (context.state.order.eon && context.state.order.eon != response.data.eon) { + if ( + context.state.order.eon && + context.state.order.eon != response.data.order.eon + ) { context.commit(storeMutations.RESET_STATE); }