Skip to content

Commit c01329c

Browse files
committed
[chore]: 불필요한 주석 제거 (#44)
1 parent 15964b4 commit c01329c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/src/main/java/com/texthip/thip/ui/common/cards/CardItemRoom.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ fun CardItemRoom(
9393
Column(
9494
modifier = Modifier
9595
.fillMaxWidth()
96-
.height(107.dp), // 이미지와 높이 맞추면 더 정확
97-
verticalArrangement = Arrangement.Center // 여기!
96+
.height(107.dp),
97+
verticalArrangement = Arrangement.Center
9898
) {
9999
Text(
100100
text = title,

app/src/main/java/com/texthip/thip/ui/common/cards/CardItemRoomSmall.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,15 +162,15 @@ fun CardItemRoomSmall(
162162
fun CardItemRoomSmallPreview() {
163163
ThipTheme {
164164
Column(verticalArrangement = Arrangement.spacedBy(16.dp)) {
165-
// 기본 카드
165+
166166
CardItemRoomSmall(
167167
title = "방 제목입니다 방 제목입니다",
168168
participants = 22,
169169
maxParticipants = 30,
170170
endDate = 3,
171171
imageRes = R.drawable.bookcover_sample
172172
)
173-
// fillMaxWidth + 검정 배경 카드
173+
174174
CardItemRoomSmall(
175175
title = "와이드 카드 fillMaxWidth",
176176
participants = 18,

0 commit comments

Comments
 (0)