Skip to content

Commit

Permalink
remove extraneous console.log statement (#2131)
Browse files Browse the repository at this point in the history
  • Loading branch information
JenniWhitman authored Mar 20, 2024
1 parent b5836f7 commit 1b575ab
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frontend/public/src/containers/pages/CatalogPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,6 @@ export class CatalogPage extends React.Component<Props> {
mergeNewObjects(oldArray, newArray) {
const oldIds = oldArray.map(a => a.id)
const newObjects = newArray.filter(a => !oldIds.includes(a.id))
console.log(oldArray, newArray, newObjects)
return oldArray.concat(newObjects)
}

Expand Down

0 comments on commit 1b575ab

Please sign in to comment.