From 055f7240df268220617db9b6089879a52ed15975 Mon Sep 17 00:00:00 2001 From: Shibo Lyu Date: Mon, 14 Apr 2025 00:28:55 +0800 Subject: [PATCH] refactor: ProfilePicture to use Identity instead of Account --- src/lib/components/ProfilePicture.svelte | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib/components/ProfilePicture.svelte b/src/lib/components/ProfilePicture.svelte index bd01f0b..3c8b3c5 100644 --- a/src/lib/components/ProfilePicture.svelte +++ b/src/lib/components/ProfilePicture.svelte @@ -1,25 +1,25 @@ -{#if account} - {#key account.id_key} - +{#if identity} + {#key identity.id_key} + {/key} - {account.profile.signee.payload.name} + {identity.profile.signee.payload.name} {:else} - Account Unavailable + Identity Unavailable {/if}