Commit graph

990 commits

Author SHA1 Message Date
senke
62975bf40a edge-cases: implement Edge 2.2 - handle request cancellation
- Enhanced createCancellableRequest() with better error handling
- Enhanced createRequestWithTimeout() with proper cancellation support
- Added Edge 2.2 documentation comments
- Cancelled requests are handled gracefully:
  - Don't trigger retries
  - Don't show error toasts
  - Properly rejected with cancellation errors
- AbortController signals fully supported
- Helper functions prevent aborting already-aborted signals
2026-01-16 12:49:40 +01:00
senke
16211f6b1c edge-cases: mark Edge 1.2 as complete
- Edge 1.2: Handle empty dashboard gracefully - COMPLETE
- Dashboard already handles empty states:
  - Stats display with '0' values when empty (appropriate)
  - Activity section uses KodoEmptyState when no activity
  - Shows helpful message: 'Aucune activité récente'
  - Quick actions sidebar provides navigation
- Empty dashboard states are well-handled
2026-01-16 12:47:01 +01:00
senke
fb956c46cb edge-cases: update Edge 1.1, 1.3, 1.4 status in TODO list
- Edge 1.4: Marked as COMPLETE (EmptyState component already exists)
- Edge 1.1: Marked as COMPLETE (improved empty track list state)
- Edge 1.3: Marked as COMPLETE (improved empty search results state)
- Both use EmptyState component with appropriate messages and actions
2026-01-16 12:44:38 +01:00
senke
2cf60b3a4f edge-cases: improve empty state handling in LibraryPage (Edge 1.1, 1.3)
- Replaced custom empty state div with EmptyState component
- Added EmptyState import from @/components/ui/empty-state
- Improved empty state UI with icon, title, description, and action button
- Different messages for empty list vs empty search results
- Added upload action button when no tracks (not in search mode)
- Fixed pre-existing errors: added useInfiniteQuery import, fixed tracksData reference
- Edge 1.4: Marked as complete (EmptyState component already exists)
- Edge 1.1 & 1.3: In progress - improved empty state handling
2026-01-16 12:44:19 +01:00
senke
df0710296b cleanup: mark Cleanup 17 as complete
- Cleanup 17: Remove dead code - COMPLETE
- Removed 2 deprecated unused functions from storeSelectors.ts
- Conservative approach: only removed clearly deprecated and unused code
- All cleanup tasks (1-17) now complete
2026-01-16 12:41:54 +01:00
senke
ec75a78a2d cleanup: remove deprecated unused functions (Cleanup 17)
- Removed useLibraryItemsNormalized() - deprecated, no imports found
- Removed useLibraryFavoritesNormalized() - deprecated, no imports found
- Functions were marked @deprecated and only returned empty states
- Migration to React Query completed, these functions no longer needed
- Cleanup 17: In progress - removed deprecated dead code
2026-01-16 12:41:37 +01:00
senke
4d6414eb5b cleanup: mark Cleanup 5 as complete (duplicate already removed)
- Cleanup 5: Remove duplicate chat store - COMPLETE
- Verified stores/chat.ts does not exist (already removed in Action 4.5.1.5)
- Active store is at features/chat/store/chatStore.ts
- All production code uses the feature store location
- Test mocks reference @/stores/chat but this is just a mock path, not actual code
2026-01-16 12:32:52 +01:00
senke
4af7e3be09 cleanup: remove obsolete TODO and update Cleanup 14 status
- Removed obsolete TODO in useChat.ts: fetchHistory function already implemented
- Updated EXHAUSTIVE_TODO_LIST.md: Cleanup 14 marked as COMPLETE
- Summary: Fixed 1 TODO, improved 1 TODO, removed 1 obsolete TODO
- Preserved backend-dependent and architectural TODOs per audit recommendations
2026-01-16 12:31:57 +01:00
senke
a792c15a09 cleanup: address simple TODO comments (Cleanup 14)
- Fixed ChatRoom.tsx: Implemented current user ID check for isMe
  - Added useUser hook to get current user
  - Replaced hardcoded isMe=false with proper user ID comparison
- Improved TwoFactorVerify.tsx: Enhanced TODO comment with specific action items
  - Clarified that verify() is for setup, not login
  - Added FIXME with clear explanation of the issue
  - Documented that parent should handle verification
- Cleanup 14: In progress - addressing simple, safe TODOs
2026-01-16 12:31:40 +01:00
senke
3e820dea16 cleanup: update Cleanup 3 status in TODO list
- Cleanup 3: Remove unused test files - COMPLETE
- Removed stores/auth.test.ts (obsolete, references deleted stores/auth.ts)
- Verified test/stores.test.ts has been updated
- Ready for next cleanup tasks
2026-01-16 12:27:33 +01:00
senke
43c6ae0707 cleanup: remove obsolete test file (Cleanup 3)
- Removed stores/auth.test.ts - references deleted stores/auth.ts
- File imports from './auth' which doesn't exist (verified in Cleanup 4)
- Auth store is now at features/auth/store/authStore.ts
- Cleanup 3: In progress - removed obsolete auth test file
2026-01-16 12:26:52 +01:00
senke
edac737e5c cleanup: verify type files status (Cleanup 7)
- Cleanup 7: Remove unused type files - COMPLETE
- Verified no obsolete type files found
- All type files are in active use:
  - dto.ts: 10 types still used via barrel exports
  - v2-v3-types.ts: 20+ UI-specific types still in use
  - backend-types.ts: 2 types used in socialService.ts
- Action 1.1.3.11 audit confirmed no empty or redundant files
- Ready for next cleanup tasks
2026-01-16 12:25:10 +01:00
senke
a8889ef347 cleanup: verify obsolete state utility files removal (Cleanup 6)
- Cleanup 6: Remove obsolete state utility files - COMPLETE
- All 6 obsolete files already deleted in Action 4.6.1.3:
  - stateCleanup.ts and test
  - stateVersioning.ts, test, and example
  - statePersistence.ts
- Verified no imports found for any of these utilities
- Ready for next cleanup tasks
2026-01-16 12:24:29 +01:00
senke
caa81a3a0c cleanup: verify stores/auth.ts removal (Cleanup 4)
- Cleanup 4: Remove stores/auth.ts if obsolete - COMPLETE
- File does not exist (already removed in Action 4.5.1.4)
- Verified no imports reference stores/auth.ts
- All code uses features/auth/store/authStore.ts
- Ready for next cleanup tasks
2026-01-16 12:23:41 +01:00
senke
38c3be6cf4 cleanup: update Cleanup 16 status in TODO list
- Cleanup 16: Remove unused variables - COMPLETE
- Verified no unused variables in production code (src/)
- Unused variables only exist in test files (intentional)
- Ready for next cleanup tasks
2026-01-16 12:21:43 +01:00
senke
c91c60370c fix: add missing logger import in toast.ts
- Added logger import that was missing from Cleanup 12
- Fixes 'logger is not defined' error
- Cleanup 16: Verifying no unused variables in production code
2026-01-16 12:21:33 +01:00
senke
ffde7b14ca cleanup: update Cleanup 15 status in TODO list
- Cleanup 15: Remove unused imports - COMPLETE
- ESLint --fix automatically removed unused imports
- No unused imports remaining in src directory
- Ready for next cleanup tasks
2026-01-16 12:19:55 +01:00
senke
ea16a87da6 cleanup: remove unused imports (Cleanup 15 - batch 1)
- ESLint --fix automatically removed unused imports:
  - services/api/client.ts: Removed unused import
  - utils/formValidation.ts: Removed unused import
  - e2e/global-setup.ts: Fixed unused imports
- Cleanup 15: In progress - automated fixes applied
2026-01-16 12:19:06 +01:00
senke
6369ccdd09 cleanup: update Cleanup 13 status in TODO list
- Cleanup 13: Audit TODO comments - COMPLETE
- Found 26 TODO/FIXME/XXX/HACK comments
- Categorized and prioritized for Cleanup 14
- Ready for next cleanup tasks
2026-01-16 12:17:21 +01:00
senke
d67a19fa19 cleanup: audit TODO comments (Cleanup 13)
- Created TODO_COMMENTS_AUDIT.md documenting findings
- Found 26 TODO/FIXME/XXX/HACK comments total (excluding generated files)
- Categorized: Backend dependencies (preserve), Implementation needed (action), Bugs (fix), Refactor/migration (improve)
- High priority: Fix TwoFactorVerify.tsx authentication bug
- Medium priority: Implement play functionality, fix test issues
- Low priority: Backend-dependent features, architectural improvements
- Cleanup 13: Audit complete - Ready for Cleanup 14
2026-01-16 12:17:10 +01:00
senke
76921f60cb cleanup: add missing logger import in OfflineQueueManager
- Added logger import to OfflineQueueManager.tsx
- Fixes missing import after console.error replacement
- Cleanup 10-12: Complete
2026-01-16 12:15:53 +01:00
senke
e7d0297cda cleanup: update Cleanup 10-12 status in TODO list
- Cleanup 10: Audit console.log statements - COMPLETE
- Cleanup 11: Replace console.log with logger - COMPLETE (no production console.log found)
- Cleanup 12: Replace console.error/warn with logger - COMPLETE (5 instances replaced)
- All production console statements now use logger
- Ready for next cleanup tasks
2026-01-16 12:15:38 +01:00
senke
34e148be72 cleanup: audit and replace console statements with logger (Cleanup 10-12)
- Created CONSOLE_STATEMENTS_AUDIT.md documenting findings
- Found 33 console statements total (excluding generated files)
- Replaced production console.error with logger.error:
  - main.tsx: Initialization error logging
  - config/env.ts: Environment validation error logging
  - OfflineQueueManager.tsx: Queue operation error logging (2 instances)
  - toast.ts: Toast module loading error logging
- Preserved: Logger implementation, test mocks, JSDoc examples, dev-only utilities
- Cleanup 10: Audit complete
- Cleanup 11-12: Replace console.log/error/warn - COMPLETE (production code only)
2026-01-16 12:15:20 +01:00
senke
0889bb9112 cleanup: remove remaining commented code in ImageCropper
- Removed commented alternative import statement
- Cleanup 9: Complete (8 files cleaned)
2026-01-16 12:14:00 +01:00
senke
e2bde8d0ac cleanup: update Cleanup 9 status in TODO list
- Cleanup 9: Remove commented-out code - COMPLETE
- Removed obsolete commented code from 7 files
- Preserved documentation and explanatory comments
- Ready for next cleanup tasks
2026-01-16 12:13:47 +01:00
senke
36cfb7ee1f cleanup: remove obsolete commented-out code (Cleanup 9)
- AuthView: Removed commented imports and JSX for non-existent EmailVerification/ResetPasswordForm components (functionality handled by separate pages)
- SettingsView: Removed commented useTheme hook
- CheckoutView: Removed commented total calculation
- LazyComponent: Removed commented ErrorBoundary import
- ImageCropper: Removed commented alternative import (already using correct import)
- EditPlaylistModal: Removed commented isCollaborative state
- ExploreView: Removed commented GENRES array
- Preserved: Documentation comments, explanatory comments, TODO comments
- Cleanup 9: Complete (7 files cleaned)
2026-01-16 12:13:39 +01:00
senke
c62fccf522 cleanup: audit commented-out code (Cleanup 8)
- Created COMMENTED_CODE_AUDIT.md documenting findings
- Found ~4,329 commented lines total (mostly documentation)
- Actual commented-out code blocks are minimal
- Excluded generated files and documentation comments
- Ready for manual review in Cleanup 9
- Cleanup 8: Complete
2026-01-16 12:12:38 +01:00
senke
8df0c449b1 cleanup: remove obsolete backup UI components directory (Cleanup 2)
- Removed apps/web/src/components/ui.backup/ directory
- Verified no imports or references to ui.backup in codebase
- Directory contained 50+ backup component files no longer needed
- Cleanup 1: LibraryPage.tsx.old already removed (verified)
- Cleanup 2: Complete
2026-01-16 12:11:37 +01:00
senke
785b0d0b1b aesthetic-improvements: mark Action 11.5.1.6 as complete
- Action 11.5.1.6: Apply direction to all components - COMPLETE
- Final verification: All decorative effects removed, functional effects preserved
- 42+ components updated across all major component directories
- Remaining gradients and spacing are functional or intentional
- Epic 11.5: Apply design direction - COMPLETE
2026-01-16 12:09:37 +01:00
senke
9d6192d209 aesthetic-improvements: update Action 11.5.1.6 progress (batches 4-5 complete)
- Action 11.5.1.6: Apply direction to all components - IN PROGRESS
- Completed batches 4-5: fixed remaining decorative effects and transforms
- Total: 42+ components updated across all major component directories
- Remaining: Final verification and edge cases
2026-01-16 12:08:48 +01:00
senke
ad1488afc6 aesthetic-improvements: fix remaining decorative transforms batch 5 (Action 11.5.1.6)
- Library: PlaylistsView (removed decorative translate transform)
- Views: GearView (removed decorative translate transform)
- PWA: PWAInstallBanner (removed decorative translate transform)
- Replaced decorative transforms with subtle opacity changes or removed entirely
- Preserved: Functional overlay gradients for text readability (all remaining gradients are functional)
- Action 11.5.1.6: Apply direction to all components - Batch 5 complete (3 components)
2026-01-16 12:08:36 +01:00
senke
7ce289e305 aesthetic-improvements: fix remaining decorative effects in components batch 4 (Action 11.5.1.6)
- Studio: ProjectsManager (removed decorative translate transform)
- Inventory: AddEquipmentView (removed decorative scale transform)
- Layout: Header (removed decorative shadow), Navbar (removed decorative gradients, 2 instances)
- Library: PlaylistDetailView (replaced decorative gradient with solid color, fixed padding p-6 → p-8)
- Layout: AudioPlayer (replaced subtle decorative gradient with solid color)
- Replaced decorative transforms with subtle opacity changes or removed entirely
- Replaced decorative gradients with solid colors
- Action 11.5.1.6: Apply direction to all components - Batch 4 complete (6 components)
2026-01-16 12:08:21 +01:00
senke
7312a65df3 aesthetic-improvements: update Action 11.5.1.6 progress (components batches 1-3)
- Action 11.5.1.6: Apply direction to all components - IN PROGRESS
- Completed 3 batches: removed decorative effects, fixed spacing, fixed gradients
- 33+ components updated across all major component directories
- Remaining: Continue with remaining components and final verification
2026-01-16 12:07:28 +01:00
senke
99d80bc2ae aesthetic-improvements: fix decorative gradient in ThemeSwitcher (Action 11.5.1.6)
- ThemeSwitcher: Replaced decorative gradient with solid color (bg-gradient-to-br from-kodo-cyan to-kodo-magenta → bg-kodo-cyan)
- Preserved: Functional overlay gradients for text readability (LiveStreamDetailView, ExploreView, ImageViewerModal, PWAInstallBanner)
- Action 11.5.1.6: Apply direction to all components - Batch 3 complete (gradient fix)
2026-01-16 12:07:15 +01:00
senke
4399ce0f76 aesthetic-improvements: fix spacing in components batch 2 (Action 11.5.1.6)
- Modals: CreatorModal (p-6 → p-8, space-y-6 → space-y-8)
- Seller: CreateProductView (space-y-6 → space-y-8, 2 instances)
- Social: ExploreView, GroupCard (space-y-6 → space-y-8, p-6 → p-8)
- Studio: ProjectsManager, CloudFileBrowser (space-y-6 → space-y-8, gap-6 → gap-8)
- Theme: ThemeSwitcher (space-y-6 → space-y-8, p-6 → p-8)
- Settings: AppearanceSettingsView (p-6 → p-8, space-y-6 → space-y-8)
- Library: PlaylistsView (space-y-6 → space-y-8)
- Upload: TagSuggestionsModal, LyricsEditorModal, BulkUploadModal (p-6 → p-8, space-y-6 → space-y-8)
- UI: modal, dialog, ImageCropper (p-6 → p-8)
- All spacing now aligned to 8px grid (32px standard padding)
- Action 11.5.1.6: Apply direction to all components - Batch 2 complete (spacing fixes)
2026-01-16 12:06:56 +01:00
senke
8b5239fdd1 aesthetic-improvements: apply design direction to components batch 1 (Action 11.5.1.6)
- UI components: FAB (removed scale transforms), tabs (removed decorative shadow)
- Upload components: FileUploadZone, MetadataEditor, BulkUploadModal (removed scale transforms and decorative gradient)
- Search: SearchBar (removed decorative shadow)
- PWA: PWAInstallBanner (removed decorative shadow)
- Social: ExploreView (removed decorative shadow and image zoom)
- Live: LiveStreamDetailView (removed decorative shadow)
- Player: VisualizerSettingsModal (removed scale transform)
- Marketplace: ReviewProductModal, ProductDetailView (removed scale transforms)
- Library: PlaylistsView (removed scale transform)
- Settings: AppearanceSettingsView (removed scale transform)
- Theme: ThemeSwitcher (removed scale transform)
- Studio: ProjectsManager, CloudFileBrowser (removed scale transforms)
- Social: GroupCard (removed image zoom)
- Seller: CreateProductView (removed scale transform)
- Modals: CreatorModal (removed scale transform)
- Replaced decorative scale transforms with subtle opacity changes or removed entirely
- Action 11.5.1.6: Apply direction to all components - Batch 1 complete (17 components)
2026-01-16 12:06:00 +01:00
senke
ba476766a8 aesthetic-improvements: mark Action 11.5.1.5 as substantially complete
- Action 11.5.1.5: Apply direction to all pages - SUBSTANTIALLY COMPLETE
- Applied design direction across all pages and views (3 batches + user manual changes)
- Removed decorative gradients, scale transforms, and shadows
- Updated spacing to 8px grid alignment (p-6 → p-8, space-y-6 → space-y-8, gap-6 → gap-8)
- Preserved functional overlays, responsive padding, and conditional styling
- All pages and views now follow Surgical Minimalism principles
2026-01-16 12:03:49 +01:00
senke
d7ec8dd6e5 aesthetic-improvements: fix remaining spacing in pages and views (Action 11.5.1.5)
- DashboardPage: Updated gap (gap-6 → gap-8) for 8px grid alignment
- FileDetailsView: Updated section spacing (space-y-6 → space-y-8)
- GearView: Updated section spacing (space-y-6 → space-y-8, 2 instances)
- ProfileView: Updated gap (gap-6 → gap-8)
- DiscoverView: Updated card padding (p-6 → p-8)
- PurchasesView: Updated gap (gap-6 → gap-8)
- Preserved: Responsive padding (p-4 sm:p-6, px-6 md:px-12) and conditional padding (p-6 for non-primary cards)
- Action 11.5.1.5: Apply direction to all pages - Batch 3 complete (spacing fixes)
2026-01-16 12:03:28 +01:00
senke
953906cc47 aesthetic-improvements: apply design direction to views batch 2 (Action 11.5.1.5)
- FileManagerView: Removed decorative scale transform (group-hover:scale-110 → removed)
- LiveView: Removed decorative image zoom (group-hover:scale-105 → removed) and icon scale (hover:scale-110 → hover:text-kodo-gold/80)
- FileDetailsView: Replaced decorative gradient with solid color (bg-gradient-to-br from-kodo-cyan to-kodo-cyan → bg-kodo-cyan/20, removed decorative shadow)
- CartView: Removed decorative shadow (shadow-neon-cyan/20 → removed)
- CheckoutView: Removed decorative shadow (shadow-neon-cyan/20 → removed)
- Preserved: Functional overlay gradients for text readability (ProfileView, DiscoverView)
- Action 11.5.1.5: Apply direction to all pages - Batch 2 complete (5 views)
2026-01-16 12:02:55 +01:00
senke
8ff0148ad2 aesthetic-improvements: apply design direction to pages batch 3 (Action 11.5.1.5)
- Pages: Updated remaining spacing issues (p-6 → p-8, space-y-6 → space-y-8, gap-6 → gap-8)
  - DashboardPage, DeveloperPage, GearPage, DesignSystemDemoPage, MarketplaceHome
- Views: Updated spacing (space-y-6 → space-y-8, gap-6 → gap-8, p-6 → p-8)
  - FileManagerView, NotificationsView, SocialView, FileDetailsView, UploadView, MarketplaceView, GearView, LiveView, ProfileView
- Action 11.5.1.5: Apply direction to all pages - Batch 3 complete (5 pages + 9 views = 14 files)
2026-01-16 12:00:50 +01:00
senke
5a2f4508eb aesthetic-improvements: apply design direction to pages batch 2 (Action 11.5.1.5)
- Pages: Updated padding (p-6 → p-8) and spacing (space-y-6 → space-y-8, gap-6 → gap-8) for 8px grid alignment
  - LivePage, SocialPage, EducationPage, QueuePage, DeveloperPage, SettingsPage
- Views: Updated spacing and removed decorative effects
  - ProfileView: Removed decorative hover scale (group-hover:scale-105), replaced decorative gradient with solid color (bg-gradient-to-r → bg-kodo-ink), updated spacing
  - CheckoutView, FileDetailsView, AnalyticsView, GearView, DiscoverView, StudioView, SearchPageView, EducationView, CartView: Updated spacing (space-y-6 → space-y-8, gap-6 → gap-8, p-6 → p-8)
- Action 11.5.1.5: Apply direction to all pages - Batch 2 complete (6 pages + 10 views = 16 files)
2026-01-16 11:58:55 +01:00
senke
459e88686b aesthetic-improvements: update Action 11.5.1.5 progress (pages batch 1)
- Action 11.5.1.5: Apply direction to all pages - Batch 1 complete
- Updated 3 pages: DashboardPage, SearchPage, DesignSystemDemoPage
- Remaining: 34 files (13 pages + 21 views)
2026-01-16 11:56:20 +01:00
senke
5dee33df00 aesthetic-improvements: apply design direction to pages batch 1 (Action 11.5.1.5)
- DashboardPage: Replaced decorative chart gradient with solid color (bg-gradient-to-t → bg-kodo-steel/30, removed hover gradient change)
- SearchPage: Updated section spacing (space-y-6 → space-y-8) for 8px grid alignment
- DesignSystemDemoPage: Updated section spacing (space-y-6 → space-y-8) and grid gaps (gap-6 → gap-8) for 8px grid alignment
- Action 11.5.1.5: Apply direction to all pages - Batch 1 complete (3 pages)
2026-01-16 11:55:42 +01:00
senke
5cf52a3c42 aesthetic-improvements: mark Action 11.2.1.4 as complete (grid overlay tool)
- Action 11.2.1.4: Add visual grid overlay tool (dev only) - COMPLETE
- Grid overlay utility created and initialized
- Toggle with Ctrl+G (Cmd+G on Mac) keyboard shortcut
- Helps visualize 8px grid alignment during development
2026-01-16 11:53:55 +01:00
senke
8633878c42 aesthetic-improvements: add visual grid overlay tool (Action 11.2.1.4)
- Created grid overlay utility (apps/web/src/utils/gridOverlay.ts) for dev mode
- Toggle with Ctrl+G (Cmd+G on Mac) keyboard shortcut
- Shows 8px grid overlay to visualize spacing alignment
- Only works in development mode (import.meta.env.DEV)
- Initialized in main.tsx after app setup
- Action 11.2.1.4: Add visual grid overlay tool (dev only) - COMPLETE
2026-01-16 11:53:29 +01:00
senke
024eb001af aesthetic-improvements: mark Action 11.2.1.3 as complete (8px grid alignment)
- Action 11.2.1.3: Align all elements to 8px grid - COMPLETE
- Total: 541 instances replaced across 230 files
- All non-8px-aligned spacing values aligned to 8px grid
- Preserved intentional fine-tuning (4px values) and responsive breakpoints
2026-01-16 11:51:15 +01:00
senke
9a114d4e20 aesthetic-improvements: align spacing to 8px grid (Action 11.2.1.3)
- Created automated script (scripts/align-8px-grid.py) to align all spacing to 8px grid
- Replaced non-8px-aligned spacing: gap-3/p-3/m-3 (12px) → gap-4/p-4/m-4 (16px), gap-5/p-5/m-5 (20px) → gap-6/p-6/m-6 (24px), gap-10/p-10/m-10 (40px) → gap-12/p-12/m-12 (48px), gap-20/p-20/m-20 (80px) → gap-24/p-24/m-24 (96px)
- Preserved: 4px values (gap-1, p-1, m-1) as they may be intentional fine-tuning, responsive breakpoints (sm:, md:, lg:), test files, documentation
- Modified files across all components to ensure consistent 8px grid alignment
- Action 11.2.1.3: Align all elements to 8px grid - COMPLETE
2026-01-16 11:50:46 +01:00
senke
f6c61fd971 aesthetic-improvements: mark Action 11.3.1.3 as complete (80/20 rule)
- Action 11.3.1.3: Apply 80/20 rule (80% neutral, 20% color) - COMPLETE
- Total: ~303 instances replaced across ~230 files
- All decorative/informational cyan instances replaced with steel
- All inconsistencies fixed
- Functional states, design system variants, and semantic indicators preserved
2026-01-16 11:48:06 +01:00
senke
74dc7ce4e1 aesthetic-improvements: fix inconsistent selected track styling in LibraryPage (Action 11.3.1.3)
- Fixed mixed cyan/steel styling: bg-kodo-cyan/15 → bg-kodo-steel/15 for consistency
- Selected track state now uses consistent steel colors throughout
- Action 11.3.1.3: final consistency fix
2026-01-16 11:47:43 +01:00
senke
b9c75111bb aesthetic-improvements: update TODO list with automated batch completion (Action 11.3.1.3)
- Updated Action 11.3.1.3 progress to reflect automated batch completion
- Total: ~302 instances replaced across ~229 files
- Status: Major progress, substantially complete
- Remaining: Final verification and edge case review
2026-01-16 11:41:00 +01:00