From 968de1de0e89476721c0df7b0b7f6bf2f880035b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 21:28:10 +0000 Subject: [PATCH] Organize markdown files into docs folder and move ErrorFallback component Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- BACKEND-CONFIG.md => docs/BACKEND-CONFIG.md | 0 CONFIGURATION.md => docs/CONFIGURATION.md | 0 CORS-CONFIG-SUMMARY.md => docs/CORS-CONFIG-SUMMARY.md | 0 CORS-GUIDE.md => docs/CORS-GUIDE.md | 0 DEPLOYMENT-CHECKLIST.md => docs/DEPLOYMENT-CHECKLIST.md | 0 DEPLOYMENT.md => docs/DEPLOYMENT.md | 0 ENV-CONFIG.md => docs/ENV-CONFIG.md | 0 IMPLEMENTATION.md => docs/IMPLEMENTATION.md | 0 PRD.md => docs/PRD.md | 0 QUICKSTART.md => docs/QUICKSTART.md | 0 README-APP.md => docs/README-APP.md | 0 REDUX-GUIDE.md => docs/REDUX-GUIDE.md | 0 .../REDUX_PERSISTENCE_QUICKSTART.md | 0 SECURITY.md => docs/SECURITY.md | 0 docker-compose.README.md => docs/docker-compose.README.md | 0 src/{ => components}/ErrorFallback.tsx | 8 ++++---- src/main.tsx | 2 +- 17 files changed, 5 insertions(+), 5 deletions(-) rename BACKEND-CONFIG.md => docs/BACKEND-CONFIG.md (100%) rename CONFIGURATION.md => docs/CONFIGURATION.md (100%) rename CORS-CONFIG-SUMMARY.md => docs/CORS-CONFIG-SUMMARY.md (100%) rename CORS-GUIDE.md => docs/CORS-GUIDE.md (100%) rename DEPLOYMENT-CHECKLIST.md => docs/DEPLOYMENT-CHECKLIST.md (100%) rename DEPLOYMENT.md => docs/DEPLOYMENT.md (100%) rename ENV-CONFIG.md => docs/ENV-CONFIG.md (100%) rename IMPLEMENTATION.md => docs/IMPLEMENTATION.md (100%) rename PRD.md => docs/PRD.md (100%) rename QUICKSTART.md => docs/QUICKSTART.md (100%) rename README-APP.md => docs/README-APP.md (100%) rename REDUX-GUIDE.md => docs/REDUX-GUIDE.md (100%) rename REDUX_PERSISTENCE_QUICKSTART.md => docs/REDUX_PERSISTENCE_QUICKSTART.md (100%) rename SECURITY.md => docs/SECURITY.md (100%) rename docker-compose.README.md => docs/docker-compose.README.md (100%) rename src/{ => components}/ErrorFallback.tsx (93%) diff --git a/BACKEND-CONFIG.md b/docs/BACKEND-CONFIG.md similarity index 100% rename from BACKEND-CONFIG.md rename to docs/BACKEND-CONFIG.md diff --git a/CONFIGURATION.md b/docs/CONFIGURATION.md similarity index 100% rename from CONFIGURATION.md rename to docs/CONFIGURATION.md diff --git a/CORS-CONFIG-SUMMARY.md b/docs/CORS-CONFIG-SUMMARY.md similarity index 100% rename from CORS-CONFIG-SUMMARY.md rename to docs/CORS-CONFIG-SUMMARY.md diff --git a/CORS-GUIDE.md b/docs/CORS-GUIDE.md similarity index 100% rename from CORS-GUIDE.md rename to docs/CORS-GUIDE.md diff --git a/DEPLOYMENT-CHECKLIST.md b/docs/DEPLOYMENT-CHECKLIST.md similarity index 100% rename from DEPLOYMENT-CHECKLIST.md rename to docs/DEPLOYMENT-CHECKLIST.md diff --git a/DEPLOYMENT.md b/docs/DEPLOYMENT.md similarity index 100% rename from DEPLOYMENT.md rename to docs/DEPLOYMENT.md diff --git a/ENV-CONFIG.md b/docs/ENV-CONFIG.md similarity index 100% rename from ENV-CONFIG.md rename to docs/ENV-CONFIG.md diff --git a/IMPLEMENTATION.md b/docs/IMPLEMENTATION.md similarity index 100% rename from IMPLEMENTATION.md rename to docs/IMPLEMENTATION.md diff --git a/PRD.md b/docs/PRD.md similarity index 100% rename from PRD.md rename to docs/PRD.md diff --git a/QUICKSTART.md b/docs/QUICKSTART.md similarity index 100% rename from QUICKSTART.md rename to docs/QUICKSTART.md diff --git a/README-APP.md b/docs/README-APP.md similarity index 100% rename from README-APP.md rename to docs/README-APP.md diff --git a/REDUX-GUIDE.md b/docs/REDUX-GUIDE.md similarity index 100% rename from REDUX-GUIDE.md rename to docs/REDUX-GUIDE.md diff --git a/REDUX_PERSISTENCE_QUICKSTART.md b/docs/REDUX_PERSISTENCE_QUICKSTART.md similarity index 100% rename from REDUX_PERSISTENCE_QUICKSTART.md rename to docs/REDUX_PERSISTENCE_QUICKSTART.md diff --git a/SECURITY.md b/docs/SECURITY.md similarity index 100% rename from SECURITY.md rename to docs/SECURITY.md diff --git a/docker-compose.README.md b/docs/docker-compose.README.md similarity index 100% rename from docker-compose.README.md rename to docs/docker-compose.README.md diff --git a/src/ErrorFallback.tsx b/src/components/ErrorFallback.tsx similarity index 93% rename from src/ErrorFallback.tsx rename to src/components/ErrorFallback.tsx index c256851..8e85cb7 100644 --- a/src/ErrorFallback.tsx +++ b/src/components/ErrorFallback.tsx @@ -1,8 +1,8 @@ import { useState } from "react"; -import { Alert, AlertTitle, AlertDescription } from "./components/ui/alert"; -import { AIErrorHelper } from "./components/AIErrorHelper"; -import { Button } from "./components/ui/button"; -import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./components/ui/collapsible"; +import { Alert, AlertTitle, AlertDescription } from "./ui/alert"; +import { AIErrorHelper } from "./AIErrorHelper"; +import { Button } from "./ui/button"; +import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./ui/collapsible"; import { AlertTriangleIcon, RefreshCwIcon, ChevronDownIcon, ChevronUpIcon, CopyIcon, CheckIcon } from "lucide-react"; interface ErrorFallbackProps { diff --git a/src/main.tsx b/src/main.tsx index bb4d422..6da2c2b 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -7,7 +7,7 @@ import { loadStorageConfig } from '@/lib/storage' import { store } from '@/store' import App from './App.tsx' -import { ErrorFallback } from './ErrorFallback.tsx' +import { ErrorFallback } from './components/ErrorFallback.tsx' import "./main.css" import "./styles/theme.css"