Skip to content

Commit

Permalink
Stop rendering owners
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Dec 26, 2023
1 parent df644c7 commit fb7dcb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/InfoColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@ export default function InfoColumn(props: Props): JSX.Element {
</Link>
</HStack>
</InfoColumnItem>
<InfoColumnItem title="Owners" count={owners.length}>
{/* <InfoColumnItem title="Owners" count={owners.length}>
{owners.map((o) => (
<HStack key={o.id}>
<Avatar size="xs" name={o.name} src={o.avatar_url} />
<Link href={`/users/${o.user_name}`}>{o.name}</Link>
</HStack>
))}
</InfoColumnItem>
</InfoColumnItem> */}
</VStack>
);
}

0 comments on commit fb7dcb9

Please sign in to comment.