Skip to content

Commit

Permalink
chore: Fix ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
kongwoojin committed Apr 21, 2024
1 parent fe7d0a7 commit 402128f
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ fun FileText(modifier: Modifier = Modifier, files: List<Files>) {
val customTabsIntent = builder.build()
customTabsIntent.launchUrl(
context,
if (url.item.startsWith("http")) Uri.parse(url.item)
else Uri.parse("http://www.koreatech.ac.kr/${url.item}")
if (url.item.startsWith("http")) {
Uri.parse(url.item)
} else {
Uri.parse("http://www.koreatech.ac.kr/${url.item}")
}
)
}
}
Expand Down

0 comments on commit 402128f

Please sign in to comment.