Skip to content

Commit

Permalink
chore: Fix ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
kongwoojin committed Mar 29, 2024
1 parent 86d4fea commit 3019801
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ fun BottomSheetScaffold(
}
}


@OptIn(ExperimentalFoundationApi::class)
@Composable
fun Board(
Expand Down Expand Up @@ -373,10 +372,11 @@ fun BoardItem(
modifier = Modifier
.fillMaxWidth()
.weight(1f),
style = if (shouldSetBold)
style = if (shouldSetBold) {
MaterialTheme.typography.boardItemTitle.copy(fontWeight = FontWeight.Bold)
else
} else {
MaterialTheme.typography.boardItemTitle
}
)
Column(
modifier = Modifier.padding(start = 8.dp),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ object APIConstraints {
const val SEARCH_WITH_TITLE = "{site}/{board}/search/title"
const val ARTICLE = "article"
}
}
}

0 comments on commit 3019801

Please sign in to comment.