diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue
index 51aa76ec..be5bb8f4 100644
--- a/src/views/AccountViewView.vue
+++ b/src/views/AccountViewView.vue
@@ -77,48 +77,6 @@
Copied!
-
-
Public Key (base 64)
-
- {{ publicBase64 }}
-
- Copied!
-
-
- Public Key (hex)
-
- {{ publicHex }}
-
- Copied!
-
-
- Derivation Path
-
- {{ derivationPath }}
-
- Copied!
-
+
+ App Notifications
-
-
- App Notifications
@@ -262,14 +220,76 @@
>
Advanced
+
+
+
+ Deep Identity Details
+
+
+
Public Key (base 64)
+
+ {{ publicBase64 }}
+
+ Copied!
+
+
+
Public Key (hex)
+
+ {{ publicHex }}
+
+ Copied!
+
+
+
Derivation Path
+
+ {{ derivationPath }}
+
+ Copied!
+
+
+
-
-
- Switch Identity / No Identity
-
+
- Claim Server
+
+
+
+
+
Claim Server
-
-
-
-
@@ -427,7 +444,7 @@ export default class AccountViewView extends Vue {
}
// Return parsed identity or null if not found
- return JSON.parse(account?.identity || "null");
+ return JSON.parse((account?.identity as string) || "null");
}
/**