your personal website on atproto - mirror blento.app

small fixes

Florian f5bc6a32 185d098c

+4 -4
+1 -1
LICENSE
··· 1 - MIT License Copyright (c) 2025 flo-bit 1 + MIT License Copyright (c) 2026 flo-bit 2 2 3 3 Permission is hereby granted, free of 4 4 charge, to any person obtaining a copy of this software and associated
+1 -1
src/lib/EditableWebsite.svelte
··· 197 197 </div> 198 198 </div> 199 199 200 - {#if !client.isLoggedIn || client.profile?.did === did} 200 + {#if (!client.isLoggedIn && !client.isInitializing) || client.profile?.did === did} 201 201 <Navbar 202 202 class="dark:bg-base-900 bg-base-100 top-auto bottom-2 mx-4 mt-3 max-w-3xl rounded-full px-4 lg:mx-auto" 203 203 >
+2 -2
src/lib/Profile.svelte
··· 9 9 did, 10 10 data, 11 11 showEditButton = false 12 - }: { handle: string; did: string; data: any; showEditButton: boolean } = $props(); 12 + }: { handle: string; did: string; data: any; showEditButton?: boolean } = $props(); 13 13 $inspect(data); 14 14 15 + // svelte-ignore state_referenced_locally 15 16 const profileData = data?.data?.['app.bsky.actor.profile']?.self?.value; 16 - $inspect(profileData); 17 17 18 18 const renderer = new marked.Renderer(); 19 19 renderer.link = ({ href, title, text }) =>