Skip to content

Commit

Permalink
style: fix client lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Nov 5, 2024
1 parent d6cede6 commit e2c9978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Search/AllParcels.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function AllParcels(props) {
<span>Top 10 Speculators</span>
</div>
<div className="detailed-zipcode">
{topSpeculators.slice(0, 10).map((record, index) => {
{topSpeculators.slice(0, 10).map((record) => {
return (
<div className="speculator-item" key={record.own_id}>
<div>
Expand Down

0 comments on commit e2c9978

Please sign in to comment.