Skip to content

Commit

Permalink
fix: selector typing
Browse files Browse the repository at this point in the history
  • Loading branch information
meelrossi committed Jun 11, 2024
1 parent d7496bc commit 9305885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/modules/routing/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export const getEmoteHasGeometry = createSelector<RootState, string, boolean>(
search => getURLParam(search, 'emoteHasGeometry') === 'true'
)

export const getCurrentLocationAddress = createSelector<RootState, string, string | undefined, string | undefined, string | undefined>(
export const getCurrentLocationAddress = createSelector<RootState, string, string | undefined, string | undefined>(
getPathName,
getWalletAddress,
(pathname, walletAddress) => {
Expand Down

0 comments on commit 9305885

Please sign in to comment.