Bug
File: src/renderer/src/components/star-command/CrewPanel.tsx, line 240
Problem: hover:bg-neutral-750 is not a valid Tailwind CSS color class. Tailwind's neutral palette only goes in increments of 100 (100, 200, 300, 400, 500, 600, 700, 800, 900). The value 750 does not exist and will have no visual effect.
Fix: Replace hover:bg-neutral-750 with either hover:bg-neutral-700 or hover:bg-neutral-800 depending on the desired hover darkness.
Impact: Cosmetic only — no functional impact. The hover background effect is simply not applied.
Found during review of PR #125.
Bug
File:
src/renderer/src/components/star-command/CrewPanel.tsx, line 240Problem:
hover:bg-neutral-750is not a valid Tailwind CSS color class. Tailwind's neutral palette only goes in increments of 100 (100, 200, 300, 400, 500, 600, 700, 800, 900). The value750does not exist and will have no visual effect.Fix: Replace
hover:bg-neutral-750with eitherhover:bg-neutral-700orhover:bg-neutral-800depending on the desired hover darkness.Impact: Cosmetic only — no functional impact. The hover background effect is simply not applied.
Found during review of PR #125.