mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-04 05:12:38 +02:00
fix(typos): update breadcrumb key generation and enforce number coercion for optional size in Google Drive item type
This commit is contained in:
parent
495168b243
commit
77ea261e29
2 changed files with 2 additions and 2 deletions
|
|
@ -241,7 +241,7 @@ export function DashboardBreadcrumb() {
|
|||
<Breadcrumb>
|
||||
<BreadcrumbList>
|
||||
{breadcrumbs.map((item, index) => (
|
||||
<React.Fragment key={item.href || item.label}>
|
||||
<React.Fragment key={`${index}-${item.href || item.label}`}>
|
||||
<BreadcrumbItem>
|
||||
{index === breadcrumbs.length - 1 ? (
|
||||
<BreadcrumbPage>{item.label}</BreadcrumbPage>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue