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 2 3 Permission is hereby granted, free of 4 charge, to any person obtaining a copy of this software and associated
··· 1 + MIT License Copyright (c) 2026 flo-bit 2 3 Permission is hereby granted, free of 4 charge, to any person obtaining a copy of this software and associated
+1 -1
src/lib/EditableWebsite.svelte
··· 197 </div> 198 </div> 199 200 - {#if !client.isLoggedIn || client.profile?.did === did} 201 <Navbar 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 >
··· 197 </div> 198 </div> 199 200 + {#if (!client.isLoggedIn && !client.isInitializing) || client.profile?.did === did} 201 <Navbar 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 >
+2 -2
src/lib/Profile.svelte
··· 9 did, 10 data, 11 showEditButton = false 12 - }: { handle: string; did: string; data: any; showEditButton: boolean } = $props(); 13 $inspect(data); 14 15 const profileData = data?.data?.['app.bsky.actor.profile']?.self?.value; 16 - $inspect(profileData); 17 18 const renderer = new marked.Renderer(); 19 renderer.link = ({ href, title, text }) =>
··· 9 did, 10 data, 11 showEditButton = false 12 + }: { handle: string; did: string; data: any; showEditButton?: boolean } = $props(); 13 $inspect(data); 14 15 + // svelte-ignore state_referenced_locally 16 const profileData = data?.data?.['app.bsky.actor.profile']?.self?.value; 17 18 const renderer = new marked.Renderer(); 19 renderer.link = ({ href, title, text }) =>