From 4066e24742a41cba9dd3cf5686a299ae749d89fd Mon Sep 17 00:00:00 2001 From: Ray Thurman Date: Thu, 22 May 2025 19:34:21 -0500 Subject: [PATCH 1/3] fix: rename button component file to match PascalCase convention --- frontend/src/components/ui/{button.tsx => Button.tsx} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename frontend/src/components/ui/{button.tsx => Button.tsx} (100%) diff --git a/frontend/src/components/ui/button.tsx b/frontend/src/components/ui/Button.tsx similarity index 100% rename from frontend/src/components/ui/button.tsx rename to frontend/src/components/ui/Button.tsx From a0d31b65bc72a284cc8a63b36d4850c464e03c35 Mon Sep 17 00:00:00 2001 From: Ray Thurman Date: Thu, 22 May 2025 19:34:47 -0500 Subject: [PATCH 2/3] fix: update button component imports to match new filename --- frontend/src/components/ui/ThemeToggle.tsx | 2 +- frontend/src/pages/Home.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ui/ThemeToggle.tsx b/frontend/src/components/ui/ThemeToggle.tsx index 8750f83..c83c7b9 100644 --- a/frontend/src/components/ui/ThemeToggle.tsx +++ b/frontend/src/components/ui/ThemeToggle.tsx @@ -1,5 +1,5 @@ import { MoonIcon, SunIcon } from 'lucide-react' -import { Button } from '../ui/Button' +import { Button } from './Button' import { useAppState, useAppDispatch, setTheme } from '../../context/AppContext' import { Theme } from '../../types' diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index 778391d..a92db8d 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -4,7 +4,7 @@ import { CircleCheck, Sparkles } from 'lucide-react' import { ErrorBoundary } from '../features/health/ErrorBoundary' import { HealthStatus } from '../features/health/HealthStatus' import { LoadingStatus } from '../features/health/LoadingStatus' -import { Button } from '../components/ui/button' +import { Button } from '../components/ui/Button' type FeatureItem = { id: string From 39e66a046a8f34e6634db3b6f4c11f4343419d02 Mon Sep 17 00:00:00 2001 From: Ray Thurman Date: Thu, 22 May 2025 19:35:08 -0500 Subject: [PATCH 3/3] chore: update frontend dependencies to latest stable versions --- frontend/package.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index ad8476c..14558ad 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -13,26 +13,26 @@ }, "dependencies": { "@radix-ui/react-slot": "^1.1.2", - "@radix-ui/react-toast": "^1.2.6", + "@radix-ui/react-toast": "^1.2.14", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", - "lucide-react": "^0.475.0", - "react": "^19.0.0", - "react-dom": "^19.0.0", - "react-router-dom": "^7.1.5", - "tailwind-merge": "^3.0.1", + "lucide-react": "^0.511.0", + "react": "^19.1.0", + "react-dom": "^19.1.0", + "react-router-dom": "^7.6.0", + "tailwind-merge": "^3.3.0", "tailwindcss-animate": "^1.0.7" }, "devDependencies": { "@types/node": "^22.13.4", - "@types/react": "^19.0.0", - "@types/react-dom": "^19.0.0", - "@vitejs/plugin-react": "^4.2.1", - "autoprefixer": "^10.4.17", - "postcss": "^8.4.35", - "prettier": "^3.2.5", - "tailwindcss": "^3.4.1", - "typescript": "^4.9.5", - "vite": "^5.1.1" + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.7", + "@vitejs/plugin-react": "^4.3.1", + "autoprefixer": "^10.4.18", + "postcss": "^8.4.38", + "prettier": "^3.4.2", + "tailwindcss": "^3.4.3", + "typescript": "^5.4.5", + "vite": "^5.2.12" } }