From 2be3a464fbee0750e87175470ad64e8601e0b36c Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Tue, 29 Oct 2024 14:35:08 -0700 Subject: [PATCH] change issued credential title to use Credential instead of KCC --- 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'; } }