Skip to content

Commit

Permalink
removed unnecessary console.log from BreadCrumb file
Browse files Browse the repository at this point in the history
  • Loading branch information
ydahal1 committed Mar 19, 2024
1 parent 6c4105b commit a588a2e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions client-reactjs/src/components/common/BreadCrumbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ class BreadCrumbs extends Component {
newBreadCrumbItems.push(newItem);
}
});
console.log('------------------------------------------');
console.dir(newBreadCrumbItems);
console.log('------------------------------------------');

const alteredCrumbs = newBreadCrumbItems.map((item) => {
return { ...item, title: item.title[0].charAt(0).toUpperCase() + item.title.slice(1) };
Expand Down

0 comments on commit a588a2e

Please sign in to comment.