Skip to content

Commit a18fa0c

Browse files
committed
Fix function name typo
Signed-off-by: Patrick St-Louis <patrick.st-louis@opsecid.ca>
1 parent 34c14b5 commit a18fa0c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

services/tenant-ui/frontend/src/components/issuance/credentialDefinitions/CreateCredentialDefinition.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const formattedSchemaList = computed(() => formatSchemaList(schemaList));
5757
onMounted(() => {
5858
// Load wallet DIDs if using askar-anoncreds wallet
5959
if (isAskarAnoncredsWallet?.value) {
60-
tenantStore.getWalletcDids();
60+
tenantStore.getWalletDids();
6161
}
6262
});
6363
@@ -66,7 +66,7 @@ watch(
6666
() => isAskarAnoncredsWallet?.value,
6767
(isAnoncreds) => {
6868
if (isAnoncreds) {
69-
tenantStore.getWalletcDids();
69+
tenantStore.getWalletDids();
7070
}
7171
}
7272
);

services/tenant-ui/frontend/src/components/issuance/schemas/CreateSchema.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const disableReason = computed(() => {
6363
// Load wallet DIDs when component mounts
6464
onMounted(() => {
6565
if (isAskarAnoncredsWallet?.value) {
66-
tenantStore.getWalletcDids();
66+
tenantStore.getWalletDids();
6767
}
6868
});
6969
@@ -72,7 +72,7 @@ watch(
7272
() => isAskarAnoncredsWallet?.value,
7373
(isAnoncreds) => {
7474
if (isAnoncreds) {
75-
tenantStore.getWalletcDids();
75+
tenantStore.getWalletDids();
7676
}
7777
}
7878
);

services/tenant-ui/frontend/src/components/profile/issuance/Issuance.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const loadIssuer = async () => {
7070
await Promise.all([
7171
tenantStore.getServerConfig(),
7272
tenantStore.getIssuanceStatus(),
73-
tenantStore.getWalletcDids(),
73+
tenantStore.getWalletDids(),
7474
tenantStore.getTransactions(),
7575
]);
7676
} catch (error) {

services/tenant-ui/frontend/src/store/tenantStore.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export const useTenantStore = defineStore('tenant', () => {
342342
return result;
343343
}
344344

345-
async function getWalletcDids() {
345+
async function getWalletDids() {
346346
console.log('> tenantStore.getWalletDids');
347347
await fetchList(
348348
API_PATH.WALLET_DID,
@@ -641,7 +641,7 @@ export const useTenantStore = defineStore('tenant', () => {
641641
getWriteLedger();
642642
getPublicDid();
643643
getTransactions();
644-
getWalletcDids();
644+
getWalletDids();
645645
publicDidRegistrationProgress.value = '';
646646
loadingIssuance.value = false;
647647
}
@@ -854,7 +854,7 @@ export const useTenantStore = defineStore('tenant', () => {
854854
getTenantDefaultSettings,
855855
getTenantSubWallet,
856856
getTransactions,
857-
getWalletcDids,
857+
getWalletDids,
858858
getWebvhConfig,
859859
getWriteLedger,
860860
registerPublicDid,

services/tenant-ui/frontend/src/views/tenant/Profile.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const reloadProfileDetails = async () => {
7373
tenantStore.getTenantConfig(),
7474
tenantStore.getWriteLedger(),
7575
tenantStore.getIssuanceStatus(),
76-
tenantStore.getWalletcDids(),
76+
tenantStore.getWalletDids(),
7777
tenantStore.getTransactions(),
7878
]);
7979
} catch (error) {

0 commit comments

Comments
 (0)