Solutionunvalidated
Define the dynamic part as a separate segment (recommended), e.g. `path="/property-in/:cityName"`, or make the entire segment dynamic and split it in the component, e.g. `path="/property-in-:cityName"` alternative `path="/:propertyInCity"` then parse `propertyInCity` (e.g., by splitting on `-`).
4137cd3f-5e6d-43a3-9fc5-9e53ed9593e9
Define the dynamic part as a separate segment (recommended), e.g. path="/property-in/:cityName", or make the entire segment dynamic and split it in the component, e.g. path="/property-in-:cityName" alternative path="/:propertyInCity" then parse propertyInCity (e.g., by splitting on -).