Skip to content

Commit

Permalink
feat: Filter data for wallet attestation in dev mode #3134
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Dec 3, 2024
1 parent 10d50c4 commit d0c43e5
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,10 @@ class _CredentialsDetailsViewState extends State<CredentialsDetailsView> {
// ],

//// wallet attestation data
if (widget.credentialModel.credentialPreview
.credentialSubjectModel
is WalletCredentialModel) ...[
if (!isDeveloperMode &&
widget.credentialModel.credentialPreview
.credentialSubjectModel
is WalletCredentialModel) ...[
WalletCredentialetailsWidget(
credentialModel: widget.credentialModel,
),
Expand Down

0 comments on commit d0c43e5

Please sign in to comment.