Skip to content

Commit

Permalink
Fix contact details on click actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro committed May 25, 2023
1 parent 2f36e69 commit 0c27750
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ fun ContactEntryGroup(
)
entries.forEach { entry ->
val type = types.firstOrNull { type -> entry.type == type.id }?.title
ContactEntry(content = entry.value, type = type)
ContactEntry(content = entry.value, type = type, onClick = {
onClick.invoke(entry)
})
}
}
}
Expand Down

0 comments on commit 0c27750

Please sign in to comment.