Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
batora9 committed Apr 11, 2024
1 parent 25519e1 commit 18f90b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Breadcrumb/Breadcrumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export const Breadcrumb: React.FC<BreadcrumbItem> = ({ items }) => {
) : (
<span className={styles.breadcrumbLink}>{item.title}</span>
)}
{index < items.length - 1 && <span className={styles.separator}>&gt;</span>}
{index < items.length - 1 && (
<span className={styles.separator}>&gt;</span>
)}
</React.Fragment>
))}
</nav>
Expand Down

0 comments on commit 18f90b3

Please sign in to comment.