Skip to content

Commit

Permalink
fix/region: 전체 시 gugun만 보이게 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkim1019 committed Nov 23, 2023
1 parent 2b569dc commit 50fc8f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fun ConnectDogRegions(
) {
var selectedRegion by remember { mutableStateOf("") }
SiDoList { sido, gugun ->
selectedRegion = "$sido $gugun"
selectedRegion = if (gugun.contains("전체")) gugun else "$sido $gugun"
onSelected(selectedRegion)
}
}
Expand Down

0 comments on commit 50fc8f4

Please sign in to comment.