Skip to content

Commit

Permalink
fix: load more (decentraland#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
cazala authored Jun 14, 2021
1 parent 70e6289 commit e76e1b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/src/modules/account/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ export const getAddress = createSelector<
RootState,
ReturnType<typeof accountMatchSelector>,
string | undefined
>(accountMatchSelector, match => match?.params.address)
>(accountMatchSelector, match => match?.params.address?.toLowerCase())
2 changes: 1 addition & 1 deletion webapp/src/modules/routing/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function* getAddress() {
address = yield select(getAccountAddress)
}

return address
return address ? address.toLowerCase() : undefined
}

// TODO: Consider moving this should live to each vendor
Expand Down

0 comments on commit e76e1b9

Please sign in to comment.