fix: correct frontend directory from apps/frontend to apps/dashboard#125
fix: correct frontend directory from apps/frontend to apps/dashboard#125spmridula wants to merge 1 commit into
Conversation
|
Warning Review limit reached
More reviews will be available in 22 minutes and 14 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Problem
The README Quick Start (step 8) instructs contributors to run:
This fails immediately because
apps/frontend/has nopackage.json. The actual working frontend points another.Root Cause
The working frontend is
apps/dashboard/(React 19 + Vite + Tailwind, fully scaffolded withpackage.json,vite.config.js,src/).apps/frontend/appears to be an abandoned stub from an earlier Next.js plan that was never built out.Additionally,
apps/frontend/components/ZoneEditor.tsxwas orphaned in the wrong directory with no surrounding app context.Changes
apps/frontend->apps/dashboardlocalhost:3000->localhost:5173(Vite default)ZoneEditor.tsxmoved toapps/dashboard/src/components/apps/frontend/stub removedTesting
Fixes #119