Files
AmirReza Jamali 90a42b9fc5
continuous-integration/drone/push Build is passing
feat(forms): implement dynamic form builder for admin and company creation
- Introduced DynamicFormBuilder component to streamline form creation for admin and company categories.
- Refactored CreateAdmin and CreateCompany components to utilize the new dynamic form structure.
- Added createAdminFormSections and createCompanyFormSections functions to define form fields and validation rules.
- Enhanced form handling with improved error management and dynamic field rendering.

This update enhances maintainability and scalability of forms across the application.
2026-06-21 09:03:51 +03:30

17 lines
618 B
Markdown

# Agent Instructions
## Dual Origin Commit and Push
When the user asks to "commit and push" (or equivalent), always execute both targets unless the user explicitly says otherwise:
- Primary origin push:
- `git push origin dev`
- Old origin push:
- `git push https://repo.ravanertebat.com/TM/tm_panel.git dev:develop`
Behavior requirements:
- If there are uncommitted changes, create a commit first and then push to both targets.
- If there is nothing to commit, still push the current `dev` branch to both targets.
- Do not ask for confirmation for the second push when the user request is "commit and push".