Skip to content

Commit 3bc1ee1

Browse files
Merge pull request #4 from raythurman2386/fix/button-component-case-sensitivity
Fix/button component case sensitivity
2 parents 064e94f + 39e66a0 commit 3bc1ee1

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

frontend/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@
1313
},
1414
"dependencies": {
1515
"@radix-ui/react-slot": "^1.1.2",
16-
"@radix-ui/react-toast": "^1.2.6",
16+
"@radix-ui/react-toast": "^1.2.14",
1717
"class-variance-authority": "^0.7.1",
1818
"clsx": "^2.1.1",
19-
"lucide-react": "^0.475.0",
20-
"react": "^19.0.0",
21-
"react-dom": "^19.0.0",
22-
"react-router-dom": "^7.1.5",
23-
"tailwind-merge": "^3.0.1",
19+
"lucide-react": "^0.511.0",
20+
"react": "^19.1.0",
21+
"react-dom": "^19.1.0",
22+
"react-router-dom": "^7.6.0",
23+
"tailwind-merge": "^3.3.0",
2424
"tailwindcss-animate": "^1.0.7"
2525
},
2626
"devDependencies": {
2727
"@types/node": "^22.13.4",
28-
"@types/react": "^19.0.0",
29-
"@types/react-dom": "^19.0.0",
30-
"@vitejs/plugin-react": "^4.2.1",
31-
"autoprefixer": "^10.4.17",
32-
"postcss": "^8.4.35",
33-
"prettier": "^3.2.5",
34-
"tailwindcss": "^3.4.1",
35-
"typescript": "^4.9.5",
36-
"vite": "^5.1.1"
28+
"@types/react": "^19.0.10",
29+
"@types/react-dom": "^19.0.7",
30+
"@vitejs/plugin-react": "^4.3.1",
31+
"autoprefixer": "^10.4.18",
32+
"postcss": "^8.4.38",
33+
"prettier": "^3.4.2",
34+
"tailwindcss": "^3.4.3",
35+
"typescript": "^5.4.5",
36+
"vite": "^5.2.12"
3737
}
3838
}

frontend/src/components/ui/ThemeToggle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { MoonIcon, SunIcon } from 'lucide-react'
2-
import { Button } from '../ui/Button'
2+
import { Button } from './Button'
33
import { useAppState, useAppDispatch, setTheme } from '../../context/AppContext'
44
import { Theme } from '../../types'
55

frontend/src/pages/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { CircleCheck, Sparkles } from 'lucide-react'
44
import { ErrorBoundary } from '../features/health/ErrorBoundary'
55
import { HealthStatus } from '../features/health/HealthStatus'
66
import { LoadingStatus } from '../features/health/LoadingStatus'
7-
import { Button } from '../components/ui/button'
7+
import { Button } from '../components/ui/Button'
88

99
type FeatureItem = {
1010
id: string

0 commit comments

Comments
 (0)