## Description
<!-- Provide a brief description of the changes in this PR -->
## Type of Change
<!-- Mark the relevant option with an "x" -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update
- [ ] Performance improvement
- [ ] Code refactoring
## Target Branch
<!-- Confirm the correct target branch -->
- [ ] This PR targets `develop` branch (for features/regular changes)
- [ ] This PR targets `main` branch (for hotfixes only)
- [ ] This PR is from a `feature/*` branch
- [ ] This PR is from a `hotfix/*` branch
## Testing
<!-- Describe the tests you ran to verify your changes -->
- [ ] Unit tests pass (`npm test`)
- [ ] Type checking passes (`npm run type-check`)
- [ ] Linting passes (`npm run lint`)
- [ ] Manual testing completed
- [ ] Added new tests for new functionality
## Checklist
- [ ] My code follows the project's style guidelines
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] Any dependent changes have been merged and published
## Breaking Changes
<!-- If this PR introduces breaking changes, list them here -->
## Additional Notes
<!-- Add any additional notes, screenshots, or context here -->
---
**Remember**:
- Feature branches → `develop`
- Hotfix branches → `main` (then backport to `develop`)
- Never merge directly to deployment branches