diff --git a/app/components/places-sidebar.gjs b/app/components/places-sidebar.gjs index fb81bd2..bf39204 100644 --- a/app/components/places-sidebar.gjs +++ b/app/components/places-sidebar.gjs @@ -146,7 +146,7 @@ export default class PlacesSidebar extends Component { get isNearbySearch() { const qp = this.router.currentRoute.queryParams; - return !qp.q && qp.lat && qp.lon; + return !qp.q && !qp.category && qp.lat && qp.lon; }