eslint fix

This commit is contained in:
mmv 2019-05-31 19:23:05 +04:00
parent 70a484e79d
commit 14ef2f9063
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ export const travelToTokens = (address: string) => {
}
export const createTestStore = (initialRoute = '/') => {
const history = createMemoryHistory({initialEntries: [initialRoute]})
const history = createMemoryHistory({ initialEntries: [initialRoute] })
return aNewStore(history)
}