Skip to content

Commit

Permalink
company listing buttons are clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
traksaw committed Jan 28, 2025
1 parent 4827533 commit 899b8dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/CompanyListing/CompanyListing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const CompanyListing = () => {
return (
<section className="companyListing_company-grid">
{companies.map((company) => (
<div className="companyListing_company-card" key={company._id}>
<Link to={`/company/${company._id}`}>{company.name}</Link>
</div>
<Link to={`/company/${company._id}`} className="companyListing_company-card" key={company._id}>
<>{company.name}</>
</Link>
))}
</section>
)
Expand Down

0 comments on commit 899b8dc

Please sign in to comment.