Skip to content

Commit a715014

Browse files
b0aseclaude
andcommitted
Fix dock app IDs to use plural form throughout
Updated both Dock.tsx and MinimalDock.tsx: - Changed app id from 'bitcoin-spreadsheet' to 'bitcoin-spreadsheets' - Updated current app checks to match plural form - Prevents redirects to singular route that should not exist 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent c23bd36 commit a715014

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Dock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const Dock: React.FC<DockProps> = ({ currentApp = 'bitcoin-os' }) => {
106106
{ id: 'bitcoin-calendar', name: 'Bitcoin Calendar', icon: Calendar, color: 'rainbow', url: 'https://bitcoin-calendar.vercel.app', current: currentApp === 'bitcoin-calendar' },
107107
{ id: 'bitcoin-exchange', name: 'Bitcoin Exchange', icon: TrendingUp, color: 'rainbow', url: 'https://bitcoin-exchange-iota.vercel.app', current: currentApp === 'bitcoin-exchange' },
108108
{ id: 'bitcoin-search', name: 'Bitcoin Search', icon: Search, color: 'rainbow', url: 'https://bitcoin-search.vercel.app', current: currentApp === 'bitcoin-search' },
109-
{ id: 'bitcoin-spreadsheet', name: 'Bitcoin Spreadsheet', icon: Table, color: 'rainbow', url: 'https://www.bitcoin-spreadsheets.website', current: currentApp === 'bitcoin-spreadsheet' },
109+
{ id: 'bitcoin-spreadsheets', name: 'Bitcoin Spreadsheet', icon: Table, color: 'rainbow', url: 'https://www.bitcoin-spreadsheets.website', current: currentApp === 'bitcoin-spreadsheets' },
110110
{ id: 'bitcoin-video', name: 'Bitcoin Video', icon: Video, color: 'rainbow', url: 'https://bitcoin-video-nine.vercel.app', current: currentApp === 'bitcoin-video' },
111111
{ id: 'bitcoin-photos', name: 'Bitcoin Photos', icon: Camera, color: 'rainbow', url: 'https://bitcoin-photos.vercel.app', current: currentApp === 'bitcoin-photos' },
112112
{ id: 'bitcoin-maps', name: 'Bitcoin Maps', icon: MapPin, color: 'rainbow', url: 'https://bitcoin-maps.vercel.app', current: currentApp === 'bitcoin-maps' },

src/components/MinimalDock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const MinimalDock: React.FC<MinimalDockProps> = ({ currentApp = 'bitcoin-os' })
9292
{ id: 'bitcoin-calendar', name: 'Bitcoin Calendar', icon: Calendar, color: 'rainbow', url: 'https://bitcoin-calendar.vercel.app', current: currentApp === 'bitcoin-calendar' },
9393
{ id: 'bitcoin-exchange', name: 'Bitcoin Exchange', icon: TrendingUp, color: 'rainbow', url: 'https://bitcoin-exchange-iota.vercel.app', current: currentApp === 'bitcoin-exchange' },
9494
{ id: 'bitcoin-search', name: 'Bitcoin Search', icon: Search, color: 'rainbow', url: 'https://bitcoin-search.vercel.app', current: currentApp === 'bitcoin-search' },
95-
{ id: 'bitcoin-spreadsheet', name: 'Bitcoin Spreadsheet', icon: Table, color: 'rainbow', url: 'https://www.bitcoin-spreadsheets.website', current: currentApp === 'bitcoin-spreadsheet' },
95+
{ id: 'bitcoin-spreadsheets', name: 'Bitcoin Spreadsheet', icon: Table, color: 'rainbow', url: 'https://www.bitcoin-spreadsheets.website', current: currentApp === 'bitcoin-spreadsheets' },
9696
{ id: 'bitcoin-video', name: 'Bitcoin Video', icon: Video, color: 'rainbow', url: 'https://bitcoin-video-nine.vercel.app', current: currentApp === 'bitcoin-video' },
9797
{ id: 'bitcoin-photos', name: 'Bitcoin Photos', icon: Camera, color: 'rainbow', url: 'https://bitcoin-photos.vercel.app', current: currentApp === 'bitcoin-photos' },
9898
{ id: 'bitcoin-maps', name: 'Bitcoin Maps', icon: MapPin, color: 'rainbow', url: 'https://bitcoin-maps.vercel.app', current: currentApp === 'bitcoin-maps' },

0 commit comments

Comments
 (0)