Skip to content

Commit

Permalink
fix: removed activity column from contributor grid (#3206)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickytonline committed Apr 17, 2024
1 parent ea65ee7 commit 4b11168
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ const ContributorListTableHeaders = ({ selected, handleOnSelectAllContributor }:
<div className={clsx("flex-1 lg:min-w-[12.5rem] flex justify-center")}>
<TableTitle>Contributor</TableTitle>
</div>
<div className={clsx(" flex-1 lg:max-w-[6.25rem] flex justify-center ")}>
<TableTitle>Act</TableTitle>
</div>

<div className={clsx("flex-1 lg:max-w-[6.25rem] ")}>
<TableTitle>Repositories</TableTitle>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,6 @@ const ContributorListTableRow = ({
<div className={clsx("flex-1 lg:min-w-[12.5rem] overflow-hidden")}>
<DevProfile username={login} hasBorder={!contributor.author_login} />
</div>
{/* Column: Act */}
<div className={clsx("flex-1 flex lg:max-w-[6.25rem] w-fit justify-center")}>
{contributor.author_login ? getActivity(totalPrs, false) : "-"}
</div>

{/* Column Repositories */}
<div className={clsx("flex-1 lg:max-w-[6.25rem] flex justify-center ")}>
Expand Down

0 comments on commit 4b11168

Please sign in to comment.