Skip to content
This repository has been archived by the owner on Oct 27, 2023. It is now read-only.

Commit

Permalink
hotfix: card standardization - Bounty hall (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
moshmage authored Feb 9, 2023
2 parents 8a0b840 + 07edf5f commit fbb817c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/bounties/list-recent-issues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ export default function ListRecentIssues() {
}, []);

return (
<CustomContainer className="mb-3">
<CustomContainer>
<div className="d-flex mt-2 p-1">
<h4 className="mt-1">{t("recent-bounties")}</h4>
</div>
<LoadingList loading={loading} />
<div className="row mt-3">
<div className="row gy-3">
{bounties &&
bounties?.map((bounty) => (
<div className="col mb-1" key={bounty.id}>
<div className="col-md-4 col" key={bounty.id}>
<IssueListItem issue={bounty} key={bounty.id} size="sm" />
</div>
))}
Expand Down

0 comments on commit fbb817c

Please sign in to comment.