Monorepo for Tangled tangled.org
1

Configure Feed

Select the types of activity you want to include in your feed.

web: remove `rkey` and `knot` fields from `RepoCardData`

We don't need both in most of the cases.

Signed-off-by: Seongmin Lee <git@boltless.me>

author
Seongmin Lee
date (Jul 27, 2026, 8:23 PM +0900) commit 881d8669 parent daaa4c1b change-id vutyqnpn
+2 -4
+1 -1
web/src/lib/components/profile/tabs/OverviewTab.svelte
··· 18 18 empty={pinned.length === 0} 19 19 emptyMessage="No pinned repositories." 20 20 > 21 - {#each pinned as repo (repo.rkey)} 21 + {#each pinned as repo (repo.repoDid)} 22 22 <RepoCard {repo} starButton={false} showOwner={false} /> 23 23 {/each} 24 24 </Section>
+1 -1
web/src/lib/components/profile/tabs/RepoListTab.svelte
··· 43 43 </form> 44 44 </div> 45 45 {/snippet} 46 - {#each repos as repo (repo.rkey)} 46 + {#each repos as repo (repo.repoDid)} 47 47 <RepoCard {repo} showOwner={false} /> 48 48 {/each} 49 49 </Section>
-2
web/src/lib/components/profile/types.ts
··· 10 10 } 11 11 12 12 export interface RepoCardData { 13 - rkey: string; 14 13 name: string; 15 14 repoDid: string; 16 15 ownerHandle: string; 17 16 description?: string; 18 - knot: string; 19 17 createdAt: string; 20 18 language?: string; 21 19 stars?: number;