This repository has no description
0

Configure Feed

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

web/components/profile: fix key error

Signed-off-by: eti <eti@eti.tf>

+2 -2
+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.repoDid)} 21 + {#each pinned as repo (`${repo.repoDid}/${repo.name}`)} 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.repoDid)} 46 + {#each repos as repo (`${repo.repoDid}/${repo.name}`)} 47 47 <RepoCard {repo} showOwner={false} /> 48 48 {/each} 49 49 </Section>