V1.7.5 release (#641)

* use hash history

* update package json
This commit is contained in:
Mikhail Mikheev 2020-03-06 17:24:02 +01:00 committed by GitHub
parent 549febe801
commit 4707c2da8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 704 additions and 27 deletions

View File

@ -1,6 +1,6 @@
{
"name": "safe-react",
"version": "1.7.3",
"version": "1.7.5",
"description": "Allowing crypto users manage funds in a safer way",
"homepage": "https://github.com/gnosis/safe-react#readme",
"bugs": {

View File

@ -1,5 +1,5 @@
// @flow
import { createBrowserHistory } from 'history'
import { createHashHistory } from 'history'
import { connectRouter, routerMiddleware } from 'connected-react-router'
import { combineReducers, createStore, applyMiddleware, compose, type CombinedReducer, type Store } from 'redux'
import thunk from 'redux-thunk'
@ -34,7 +34,7 @@ import currentSession, {
type State as CurrentSessionState,
} from '~/logic/currentSession/store/reducer/currentSession'
export const history = createBrowserHistory({ basename: '/app/' })
export const history = createHashHistory({ hashType: 'slash' })
// eslint-disable-next-line
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose

725
yarn.lock

File diff suppressed because it is too large Load Diff