diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index 51aa76eca..be5bb8f46 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
-
+
@@ -153,8 +113,6 @@ class="dot absolute left-1 top-1 bg-slate-400 w-6 h-6 rounded-full transition" >
- -
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"); } /**