Skip to content

Commit

Permalink
TODO credentialPack
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliano1612 committed Oct 8, 2024
1 parent 152fcad commit c1595e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fun OID4VCIView(
navController: NavController
) {
var loading by remember {
mutableStateOf<Boolean>(false)
mutableStateOf(false)
}
var err by remember {
mutableStateOf<String?>(null)
Expand Down Expand Up @@ -132,6 +132,7 @@ fun OID4VCIView(
credentials?.forEach { cred ->
cred.payload.toString(Charsets.UTF_8).let {
credential = it.substring(0, min(1500, it.length))
// TODO: add to credentialPack
}

}
Expand Down

0 comments on commit c1595e1

Please sign in to comment.