fix(typos): update breadcrumb key generation and enforce number coercion for optional size in Google Drive item type

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-12-31 19:32:44 -08:00
parent 495168b243
commit 77ea261e29
2 changed files with 2 additions and 2 deletions

View file

@ -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>