diff --git a/src/views/IdentitySwitcherView.vue b/src/views/IdentitySwitcherView.vue
index 806fa1f4..d3c8f715 100644
--- a/src/views/IdentitySwitcherView.vue
+++ b/src/views/IdentitySwitcherView.vue
@@ -21,9 +21,6 @@
-
- {{ givenName }}
-
ID: {{ activeDid }}
@@ -90,7 +87,6 @@ export default class IdentitySwitcherView extends Vue {
public activeDid = "";
public apiServer = "";
public apiServerInput = "";
- public givenName = "";
public otherIdentities: Array<{ did: string }> = [];
public showContactGives = false;
@@ -111,9 +107,6 @@ export default class IdentitySwitcherView extends Vue {
this.activeDid = settings?.activeDid || "";
this.apiServer = settings?.apiServer || "";
this.apiServerInput = settings?.apiServer || "";
- this.givenName =
- (settings?.firstName || "") +
- (settings?.lastName ? ` ${settings.lastName}` : ""); // deprecated, pre v 0.1.3
this.showContactGives = !!settings?.showContactGivesInline;
const identity = await this.getIdentity(this.activeDid);