Skip to content

Commit

Permalink
[INJIMOB-1325]: Changing verificationErrorMesssage into verificationM…
Browse files Browse the repository at this point in the history
…essage in kotlin library

Signed-off-by: BalachandarG <[email protected]>
  • Loading branch information
balachandarg-tw committed Oct 23, 2024
1 parent c7b569f commit ac23c9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ fun VerifyVC(modifier: Modifier = Modifier) {
modifier = Modifier.size(80.dp)
)
Text(
text = verificationResult.value?.verificationErrorMessage ?: "Status: Waiting...",
text = verificationResult.value?.verificationMessage ?: "Status: Waiting...",
modifier = modifier.fillMaxWidth(),
maxLines = 5,
overflow = TextOverflow.Ellipsis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package io.mosip.vercred.vcverifier.data

data class VerificationResult(
var verificationStatus: Boolean,
var verificationErrorMessage: String = ""
var verificationMessage: String = ""

)

Expand Down

Large diffs are not rendered by default.

0 comments on commit ac23c9b

Please sign in to comment.