Skip to content

Commit

Permalink
feat/#17 : 에피소드 리스트 카드 default 값 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
shinythinking committed Feb 18, 2025
1 parent fdccd3b commit 4a0a3de
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ import com.boostcamp.mapisode.home.R as S
@Composable
fun EpisodeListCard(
imageUrl: String,
title: String,
createdBy: String,
address: String,
createdAt: Date,
content: String,
title: String = "",
createdBy: String = "",
address: String = "",
createdAt: Date = Date(),
content: String = "",
) {
Row(
modifier = Modifier
Expand Down

0 comments on commit 4a0a3de

Please sign in to comment.