Skip to content

Commit

Permalink
(PC-32744) fix(ThematicHome): selectedLocationMode is Everywhere when…
Browse files Browse the repository at this point in the history
… app is first oppened (#7129)
  • Loading branch information
nmajorfrances-pass committed Oct 31, 2024
1 parent 3859539 commit 381e35b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/features/home/pages/ThematicHome.native.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ describe('ThematicHome', () => {
${true} | ${'deeplink'} | ${LocationMode.EVERYWHERE} | ${LocationMode.AROUND_ME}
${true} | ${'deeplink'} | ${LocationMode.AROUND_PLACE} | ${LocationMode.AROUND_ME}
${true} | ${'category_block'} | ${LocationMode.AROUND_ME} | ${LocationMode.AROUND_ME}
${true} | ${'category_block'} | ${LocationMode.EVERYWHERE} | ${LocationMode.AROUND_ME}
${false} | ${'deeplink'} | ${LocationMode.EVERYWHERE} | ${LocationMode.EVERYWHERE}
${false} | ${'category_block'} | ${LocationMode.EVERYWHERE} | ${LocationMode.EVERYWHERE}
${false} | ${'deeplink'} | ${LocationMode.AROUND_PLACE} | ${LocationMode.AROUND_PLACE}
Expand Down
2 changes: 1 addition & 1 deletion src/features/home/pages/ThematicHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const ThematicHome: FunctionComponent = () => {
case selectedLocationMode === LocationMode.AROUND_PLACE:
setSelectedLocationMode(LocationMode.AROUND_PLACE)
break
case selectedLocationMode === LocationMode.AROUND_ME:
case selectedLocationMode === LocationMode.AROUND_ME || hasGeolocPosition:
setSelectedLocationMode(LocationMode.AROUND_ME)
break
default:
Expand Down

0 comments on commit 381e35b

Please sign in to comment.