From 7830d820fed31cce1bc476328bcae11c2f502c5f Mon Sep 17 00:00:00 2001 From: Ethan Lee <125412902+ethan-tbd@users.noreply.github.com> Date: Tue, 29 Oct 2024 14:40:06 -0700 Subject: [PATCH] fix: change issued credential title (#326) --- lib/features/account/account_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/account/account_page.dart b/lib/features/account/account_page.dart index ae17b985..4cbaffd9 100644 --- a/lib/features/account/account_page.dart +++ b/lib/features/account/account_page.dart @@ -327,6 +327,6 @@ class AccountPage extends HookConsumerWidget { ? DateFormat('MMM dd yyyy').format(DateTime.parse(issuedAt).toLocal()) : 'no issuance date'; - return 'KCC - $issuanceDate'; + return 'Credential - $issuanceDate'; } }