change wording from "identity" to "identifier" in many places

This commit is contained in:
2024-01-12 16:37:02 -07:00
parent 14e203dd74
commit a87179d127
14 changed files with 38 additions and 35 deletions

View File

@@ -236,7 +236,7 @@ export default class GiftedDialog extends Vue {
if (!identity) {
throw new Error(
"Attempted to load Give records for DID ${activeDid} but no identity was found",
"Attempted to load Give records for DID ${activeDid} but no identifier was found",
);
}
return identity;
@@ -260,7 +260,7 @@ export default class GiftedDialog extends Vue {
group: "alert",
type: "danger",
title: "Error",
text: "You must select an identity before you can record a give.",
text: "You must select an identifier before you can record a give.",
},
-1,
);

View File

@@ -166,7 +166,7 @@ export default class OfferDialog extends Vue {
if (!identity) {
throw new Error(
"Attempted to load Offer records for DID ${activeDid} but no identity was found",
"Attempted to load Offer records for DID ${activeDid} but no identifier was found",
);
}
return identity;
@@ -188,7 +188,7 @@ export default class OfferDialog extends Vue {
group: "alert",
type: "danger",
title: "Error",
text: "You must select an identity before you can record an offer.",
text: "You must select an identifier before you can record an offer.",
},
-1,
);