Skip to content

Commit

Permalink
fix: Profiles not loading (decentraland#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia authored Mar 11, 2022
1 parent 2b0b32e commit f3e1551
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/src/modules/store/sagas.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { call, put, select, takeEvery, takeLatest } from 'redux-saga/effects'
import { call, put, select, takeEvery } from 'redux-saga/effects'
import { LocationChangeAction, LOCATION_CHANGE } from 'connected-react-router'
import { getAddress } from 'decentraland-dapps/dist/modules/wallet/selectors'
import { AuthIdentity } from 'dcl-crypto'
Expand All @@ -24,8 +24,8 @@ import {
import { getIsLocalStoreDirty } from './selectors'

export function* storeSaga(client: CatalystClient) {
yield takeLatest(FETCH_STORE_REQUEST, handleFetchStoreRequest)
yield takeLatest(UPDATE_STORE_REQUEST, handleUpdateStoreRequest)
yield takeEvery(FETCH_STORE_REQUEST, handleFetchStoreRequest)
yield takeEvery(UPDATE_STORE_REQUEST, handleUpdateStoreRequest)
yield takeEvery(LOCATION_CHANGE, handleLocationChange)

function* handleLocationChange({
Expand Down

0 comments on commit f3e1551

Please sign in to comment.