Skip to content

Commit

Permalink
[Fix] Health-Food-Me#245 - 검색플로우 위치 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
L-j-h-c committed Sep 6, 2022
1 parent e875828 commit e6f379e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ extension SearchResultVC {
if let text = searchTextField.text {
searchContent = text
}
requestRestaurantSearchResult(searchRequest: SearchRequestEntity(longitude: lat, latitude: lng,
requestRestaurantSearchResult(searchRequest: SearchRequestEntity(longitude: lng, latitude: lat,
keyword: keyword), fromRecent: fromRecent) {
self.mapViewController.initialId = self.fromSearchCellInitial
self.mapViewController.IDsForMap = self.searchResultList.map({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ extension SearchVC {
if let text = searchTextField.text {
searchContent = text
}
requestRestaurantSearchResult(searchRequest: SearchRequestEntity(longitude: lat,
latitude: lng,
requestRestaurantSearchResult(searchRequest: SearchRequestEntity(longitude: lng,
latitude: lat,
keyword: keyword), fromRecent: fromRecent)
}

Expand Down

0 comments on commit e6f379e

Please sign in to comment.