kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(web): resolve Biome noArrayIndexKey lint in shortcuts, repo modal, and error display (#1096)

authored by

Tin Sever and committed by
GitHub
16eddd6d 4c1a03b9

+7 -10
+1 -1
.husky/pre-commit
··· 1 - pnpm dlx @biomejs/biome@2.0.6 ci . 1 + pnpm exec biome ci . 2 2 pnpm run build
+2 -2
apps/web/src/components/keyboard-shortcuts-help.tsx
··· 171 171 {category.title} 172 172 </h3> 173 173 <div className="space-y-1"> 174 - {category.shortcuts.map((shortcut, index) => ( 174 + {category.shortcuts.map((shortcut) => ( 175 175 <div 176 - key={`${category.title}-${index}`} 176 + key={`${category.title}-${shortcut.description}-${shortcut.keys.join("+")}`} 177 177 className="flex items-center justify-between py-1.5 px-2 rounded-md hover:bg-muted/50" 178 178 > 179 179 <span className="text-xs">{shortcut.description}</span>
+2 -2
apps/web/src/components/project/repository-browser-modal.tsx
··· 133 133 <div className="flex-1 overflow-y-auto min-h-[300px]"> 134 134 {isLoading && ( 135 135 <div className="px-6 py-4 space-y-3"> 136 - {Array.from({ length: 5 }, (_, i) => ( 136 + {[0, 1, 2, 3, 4].map((slot) => ( 137 137 <div 138 - key={`loading-skeleton-repo-${i}-${Date.now()}`} 138 + key={`loading-skeleton-repo-${slot}`} 139 139 className="p-4 border border-border rounded-md bg-sidebar animate-pulse" 140 140 > 141 141 <div className="flex items-center gap-3">
+2 -5
apps/web/src/components/ui/error-display.tsx
··· 62 62 Troubleshooting steps: 63 63 </h4> 64 64 <ul className="text-xs text-muted-foreground space-y-1"> 65 - {troubleshootingSteps.map((step, index) => ( 66 - <li 67 - key={`step-${index}-${step.slice(0, 10)}`} 68 - className="flex items-start gap-2" 69 - > 65 + {troubleshootingSteps.map((step) => ( 66 + <li key={step} className="flex items-start gap-2"> 70 67 <span className="text-muted-foreground mt-0.5">•</span> 71 68 <span>{step}</span> 72 69 </li>