parent
549febe801
commit
4707c2da8e
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "safe-react",
|
"name": "safe-react",
|
||||||
"version": "1.7.3",
|
"version": "1.7.5",
|
||||||
"description": "Allowing crypto users manage funds in a safer way",
|
"description": "Allowing crypto users manage funds in a safer way",
|
||||||
"homepage": "https://github.com/gnosis/safe-react#readme",
|
"homepage": "https://github.com/gnosis/safe-react#readme",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// @flow
|
// @flow
|
||||||
import { createBrowserHistory } from 'history'
|
import { createHashHistory } from 'history'
|
||||||
import { connectRouter, routerMiddleware } from 'connected-react-router'
|
import { connectRouter, routerMiddleware } from 'connected-react-router'
|
||||||
import { combineReducers, createStore, applyMiddleware, compose, type CombinedReducer, type Store } from 'redux'
|
import { combineReducers, createStore, applyMiddleware, compose, type CombinedReducer, type Store } from 'redux'
|
||||||
import thunk from 'redux-thunk'
|
import thunk from 'redux-thunk'
|
||||||
|
@ -34,7 +34,7 @@ import currentSession, {
|
||||||
type State as CurrentSessionState,
|
type State as CurrentSessionState,
|
||||||
} from '~/logic/currentSession/store/reducer/currentSession'
|
} from '~/logic/currentSession/store/reducer/currentSession'
|
||||||
|
|
||||||
export const history = createBrowserHistory({ basename: '/app/' })
|
export const history = createHashHistory({ hashType: 'slash' })
|
||||||
|
|
||||||
// eslint-disable-next-line
|
// eslint-disable-next-line
|
||||||
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose
|
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose
|
||||||
|
|
Loading…
Reference in New Issue