Skip to content

Commit

Permalink
Dev -> main (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
poco111 committed Nov 14, 2023
2 parents 00bdb51 + 14714cd commit ddb3132
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fe/src/pages/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,9 @@ export const HomePage = () => {
: LOCATION_FALLBACK,
subLocation:
userInfo?.isLoggedIn && userInfo?.sub ? userInfo?.sub : null,
region: userInfo?.selectedLocation?.town,
region: userInfo?.isLoggedIn
? userInfo?.selectedLocation?.town
: LOCATION_FALLBACK.town,
handleFilterBtnClick: () => {
setCategoryPopupOpen(true);
},
Expand Down

0 comments on commit ddb3132

Please sign in to comment.