Skip to content

Commit

Permalink
testing the changes
Browse files Browse the repository at this point in the history
  • Loading branch information
glo11372 committed May 29, 2024
1 parent facd23d commit f8efd5b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/venia-ui/lib/components/Breadcrumbs/breadcrumbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,16 @@ const Breadcrumbs = props => {
) : (
<span className={classes.currentCategory}>{currentCategory}</span>
);

console.log('currentProduct', currentProduct);
console.log('currentCategoryPath', currentCategoryPath);
console.log('currentCategoryLink', currentCategoryLink);
const currentProductNode = currentProduct ? (
<Fragment>
<span className={classes.divider}>{DELIMITER}</span>
<span className={classes.text}>{currentProduct}</span>
</Fragment>
) : null;

console.log('currentProductNode', currentProductNode);
return (
<div className={classes.root} aria-live="polite" aria-busy="false">
<Link className={classes.link} to="/">
Expand Down

0 comments on commit f8efd5b

Please sign in to comment.