From d472032a922bf93e5fb268a2c12a639c7d7af622 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Fri, 1 Mar 2024 15:56:48 +0545 Subject: [PATCH] Update DEFAULT profile settings #2450 --- lib/dashboard/profile/models/profile.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/dashboard/profile/models/profile.dart b/lib/dashboard/profile/models/profile.dart index 44f292681..448f62c3b 100644 --- a/lib/dashboard/profile/models/profile.dart +++ b/lib/dashboard/profile/models/profile.dart @@ -68,6 +68,7 @@ class ProfileModel extends Equatable { clientId: clientId, clientSecret: clientSecret, vcFormatType: VCFormatType.jwtVc, + proofType: ProofType.jwt, ), ), settingsMenu: SettingsMenu.initial(), @@ -114,6 +115,7 @@ class ProfileModel extends Equatable { clientId: clientId, clientSecret: clientSecret, vcFormatType: VCFormatType.ldpVc, + proofType: ProofType.ldpVp, ), ), settingsMenu: SettingsMenu.initial(), @@ -182,6 +184,7 @@ class ProfileModel extends Equatable { clientId: clientId, clientSecret: clientSecret, vcFormatType: VCFormatType.jwtVcJson, + proofType: ProofType.jwt, ), ), settingsMenu: SettingsMenu.initial(), @@ -250,6 +253,7 @@ class ProfileModel extends Equatable { clientId: clientId, clientSecret: clientSecret, vcFormatType: VCFormatType.vcSdJWT, + proofType: ProofType.jwt, ), ), settingsMenu: SettingsMenu.initial(),