--- import Combobox from '../auth/Combobox.astro'; import AtprotoIcon from '../auth/icons/AtprotoIcon.astro'; interface Props { shareRepo: string; shareSourceProfile: { displayName?: string; avatar?: string } | null; loggedInUserHandle: string | null; } const { shareRepo, shareSourceProfile, loggedInUserHandle, } = Astro.props; const canResetShareSource = !!loggedInUserHandle && shareRepo !== loggedInUserHandle; const resetSourceHref = loggedInUserHandle ? `/community-content?source=${encodeURIComponent(loggedInUserHandle)}` : '/community-content'; ---