Skip to content

Commit

Permalink
feat: Disble wallet attestation card when dev mode is off #2789
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Jul 17, 2024
1 parent 8fb6bc1 commit 85feb72
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class HomeCredentialCategoryList extends StatelessWidget {
if (element.credentialPreview.credentialSubjectModel
.credentialSubjectType ==
CredentialSubjectType.walletCredential) {
if (profileModel.isDeveloperMode) {
return true;
if (!profileModel.isDeveloperMode) {
return false;
}
}

Expand Down

0 comments on commit 85feb72

Please sign in to comment.