Skip to content

Commit

Permalink
[FIX/#162] 자체 QA 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed Jan 23, 2025
1 parent 8deaf56 commit b4cdbe3
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ fun MapScreen(
var isSelected by remember { mutableStateOf(false) }
var selectedMarkerId by remember { mutableIntStateOf(-1) }

Box(modifier = Modifier.fillMaxSize()) {
Box(
modifier = Modifier
.fillMaxSize()
) {
NaverMap(
cameraPositionState = cameraPositionState,
onMapClick = { _, _ ->
Expand Down Expand Up @@ -271,7 +274,7 @@ fun MapScreen(
MapPlaceDetailCard(
placeName = placeName,
review = postTitle,
imageUrlList = photoUrlList.toImmutableList(),
imageUrlList = photoUrlList.take(3).toImmutableList(),
categoryIconUrl = categoryEntity.iconUrl,
categoryName = categoryEntity.categoryName,
textColor = Color.hexToColor(categoryEntity.textColor.toValidHexColor()),
Expand Down Expand Up @@ -310,6 +313,7 @@ fun MapScreen(
)
} else {
LazyColumn(
contentPadding = PaddingValues(bottom = paddingValues.calculateBottomPadding()),
modifier = Modifier
.fillMaxSize()
.padding(bottom = paddingValues.calculateBottomPadding())
Expand Down

0 comments on commit b4cdbe3

Please sign in to comment.