Skip to content

Commit 0441bfc

Browse files
committed
[BOOK-169] chore: code style check success
1 parent a8fb023 commit 0441bfc

File tree

3 files changed

+4
-4
lines changed
  • core
    • model/src/main/kotlin/com/ninecraft/booket/core/model
    • network/src/main/kotlin/com/ninecraft/booket/core/network/response
  • feature/home/src/main/kotlin/com/ninecraft/booket/feature/home/component

3 files changed

+4
-4
lines changed

core/model/src/main/kotlin/com/ninecraft/booket/core/model/HomeModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import androidx.compose.runtime.Stable
44

55
@Stable
66
data class HomeModel(
7-
val recentBooks: List<RecentBookModel> = emptyList()
7+
val recentBooks: List<RecentBookModel> = emptyList(),
88
)
99

1010
@Stable

core/network/src/main/kotlin/com/ninecraft/booket/core/network/response/HomeResponse.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import kotlinx.serialization.Serializable
66
@Serializable
77
data class HomeResponse(
88
@SerialName("recentBooks")
9-
val recentBooks: List<RecentBook>
9+
val recentBooks: List<RecentBook>,
1010
)
1111

1212
@Serializable

feature/home/src/main/kotlin/com/ninecraft/booket/feature/home/component/BookCard.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ fun EmptyBookCard(
224224
Spacer(modifier = Modifier.height(ReedTheme.spacing.spacing5))
225225
Image(
226226
painter = painterResource(R.drawable.img_empty_book),
227-
contentDescription = "Empty Book"
227+
contentDescription = "Empty Book",
228228
)
229229
Spacer(modifier = Modifier.height(ReedTheme.spacing.spacing5))
230230
Text(
@@ -259,7 +259,7 @@ private fun BookCardPreview() {
259259
recentBookInfo = RecentBookModel(
260260
title = "여름은 오래 그곳에 남아",
261261
author = "마쓰이에 마사시",
262-
publisher = "비채"
262+
publisher = "비채",
263263
),
264264
onBookDetailClick = {},
265265
onRecordButtonClick = {},

0 commit comments

Comments
 (0)