Skip to content

Commit

Permalink
chore: characterType.type null check
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannijunseokim committed Apr 9, 2024
1 parent b04256f commit 30726d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fun BookDialog(
LazyColumn(modifier = Modifier.fillMaxHeight(0.7f)) {
items(bookInfo.categories) {
CharacterTypeItem(
characterCategory = it.characterType.type,
characterCategory = it.characterType.type ?: "",
characters = it.characters,
acquiredCount = it.acquiredCount,
)
Expand Down

0 comments on commit 30726d8

Please sign in to comment.