fix: add missing error and successMessage state variables in ProjectForm

Fixes ReferenceError where template was using undefined variables.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Justin Edmund 2025-06-25 22:07:28 -04:00
parent cf35980104
commit d4490fd70c
2 changed files with 3 additions and 1 deletions

View file

@ -89,7 +89,7 @@ Create a consistent design system by extracting hardcoded values.
- [x] **Define animation constants**
- [x] Create transition/animation duration variables
- [ ] Replace hardcoded duration values
- [x] Replace hardcoded duration values (replaced in key components)
### Phase 3: Component Refactoring (Weeks 3-4)
Refactor components to reduce duplication and complexity.

View file

@ -27,6 +27,8 @@
let isSaving = $state(false)
let activeTab = $state('metadata')
let validationErrors = $state<Record<string, string>>({})
let error = $state<string | null>(null)
let successMessage = $state<string | null>(null)
// Form data
let formData = $state<ProjectFormData>({ ...defaultProjectFormData })