Skip to content

Commit

Permalink
refactor: Remove syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Oct 25, 2024
1 parent 85c75a1 commit 05a49fb
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/app/shared/constants/constants_json.dart
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,11 @@ abstract class ConstantsJson {
'did',
'redirect_uri',
'x509_san_dns',
'verifier_attestation'
'verifier_attestation',
],
'request_object_signing_alg_values_supported': ['ES256', 'ES256K', 'EdDSA'],
'presentation_definition_uri_supported': true,
'contacts': ['contact@talao.io']
'contacts': ['contact@talao.io'],
};

static const walletMetadataForVerifiers = <String, dynamic>{
Expand Down
1 change: 1 addition & 0 deletions lib/app/shared/message_handler/response_message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -786,6 +786,7 @@ class ResponseMessage with MessageHandler {
case ResponseString
.RESPONSE_STRING_invalidPresentationDefinitionUriErrorDescription:
return ResponseString
// ignore: lines_longer_than_80_chars
.RESPONSE_STRING_invalidPresentationDefinitionUriErrorDescription
.localise(
context,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ class _CryptoBottomSheetPageState extends State<CryptoBottomSheetPage> {
builder: (context) =>
ConfirmDialog(
title: l10n
// ignore: lines_longer_than_80_chars
.cannotDeleteCurrentAccount,
yes: l10n.ok,
showNoButton: false,
Expand All @@ -215,7 +216,8 @@ class _CryptoBottomSheetPageState extends State<CryptoBottomSheetPage> {
ConfirmDialog(
title: l10n
.deleteAccountMessage(
data.name,),
data.name,
),
yes: l10n.ok,
showNoButton: false,
),
Expand All @@ -224,6 +226,7 @@ class _CryptoBottomSheetPageState extends State<CryptoBottomSheetPage> {
if (value != null && value) {
await context
.read<
// ignore: lines_longer_than_80_chars
ManageAccountsCubit>()
.deleteCryptoAccount(
index: i,
Expand Down
1 change: 1 addition & 0 deletions lib/dashboard/qr_code/widget/developer_mode_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class DeveloperModeDialog extends StatelessWidget {
),
const SizedBox(height: 15),
Text(
// ignore: lines_longer_than_80_chars
l10n.toStopDisplayingThisPopupDeactivateTheDeveloperModeInTheSettings,
style: Theme.of(context).textTheme.bodyMedium,
textAlign: TextAlign.center,
Expand Down
2 changes: 1 addition & 1 deletion lib/onboarding/wallet_ready/view/wallet_ready_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class _WalletReadyViewState extends State<WalletReadyView> {
// l10n.walletReadySubtitle,
// textAlign: TextAlign.center,
// style:
// Theme.of(context).textTheme.headlineSmall?.copyWith(
// Theme.of(context).textTheme.headlineSmall?.copyWith(
// fontWeight: FontWeight.normal,
// ),
// ),
Expand Down
3 changes: 2 additions & 1 deletion packages/oidc4vc/lib/src/oidc4vc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,8 @@ class OIDC4VC {
Uri.encodeComponent(jsonEncode(clientMetaData));
} else if (clientAuthentication != ClientAuthentication.clientSecretJwt) {
myRequest['client_metadata'] = jsonEncode(clientMetaData);
// paramètre config du portail, on ne met pas si : client authentication :
// paramètre config du portail,
// on ne met pas si : client authentication :
}
} else {
myRequest['wallet_issuer'] = walletIssuer;
Expand Down

0 comments on commit 05a49fb

Please sign in to comment.