90a42b9fc5
continuous-integration/drone/push Build is passing
- 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.
17 lines
618 B
Markdown
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".
|