Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Fix App crash issue in Contributor screen (#3480)
Browse files Browse the repository at this point in the history
  • Loading branch information
akashs056 authored Sep 6, 2024
1 parent 1b24a2f commit 8ea2182
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,9 @@ private fun ContributorCard(contributor: Contributor) {
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
onClick = {
browser.openUri(contributor.githubProfileUrl)
if (contributor.githubProfileUrl.isNotBlank()) {
browser.openUri(contributor.githubProfileUrl)
}
}
) {
Row(
Expand Down

0 comments on commit 8ea2182

Please sign in to comment.