fix: remove duplicate ProfileHeader from profile sub-pages The (profile) layout already renders ProfileHeader. Followers, following, and stars pages were rendering it again.

Author: Aaron Steven White
Commit c89616e9f3638101fd89565607e0df353fef06ae
Parent: c6bfa57d16
Structural diff unavailable

These commits were pushed via plain git push, so no pre-parsed schemas are available. Install git-remote-cospan and re-push via panproto:// to see scope-level changes, breaking change detection, and semantic diffs.

brew install panproto/tap/git-remote-cospan
3 files changed +0 -6
@@ -1,5 +1,4 @@
11 <script lang="ts">
2-	import ProfileHeader from '$lib/components/shared/ProfileHeader.svelte';
32 	import EmptyState from '$lib/components/shared/EmptyState.svelte';
43 
54 	let { data } = $props();
@@ -10,7 +9,6 @@
109 </svelte:head>
1110 
1211 <section>
13-	<ProfileHeader profile={data.profile} did={data.did} />
1412 
1513 	<!-- Followers list -->
1614 	{#if data.followers.items.length === 0}
@@ -1,5 +1,4 @@
11 <script lang="ts">
2-	import ProfileHeader from '$lib/components/shared/ProfileHeader.svelte';
32 	import EmptyState from '$lib/components/shared/EmptyState.svelte';
43 
54 	let { data } = $props();
@@ -10,7 +9,6 @@
109 </svelte:head>
1110 
1211 <section>
13-	<ProfileHeader profile={data.profile} did={data.did} />
1412 
1513 	<!-- Following list -->
1614 	{#if data.following.items.length === 0}
@@ -1,5 +1,4 @@
11 <script lang="ts">
2-	import ProfileHeader from '$lib/components/shared/ProfileHeader.svelte';
32 	import EmptyState from '$lib/components/shared/EmptyState.svelte';
43 	import { timeAgo } from '$lib/utils/time.js';
54 
@@ -11,7 +10,6 @@
1110 </svelte:head>
1211 
1312 <section>
14-	<ProfileHeader profile={data.profile} did={data.did} />
1513 
1614 	<!-- Starred repos -->
1715 	{#if data.stars.items.length === 0}
cospan · schematic version control on atproto built on AT Protocol