fix getting project name in get_alternative_solutions.prompt

This commit is contained in:
LeonOstrez
2024-07-23 11:09:32 +02:00
parent c80bdfc4b6
commit cea0d2a3b8
2 changed files with 3 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ Then, upon implementing these changes, your colleague came back with the followi
{% endif %}
{% if user_input != '' %}
Your colleague who is testing the app "{{ name }}" sent you this report now:
Your colleague who is testing the app "{{ state.branch.project.name }}" sent you this report now:
```
{{ user_input }}
```

View File

@@ -4,7 +4,8 @@ You are working on an app called "{{ state.branch.project.name }}" and you need
{% if state.tasks and state.current_task %}
Development process of this app was split into smaller tasks. Here is the list of all tasks:
```{% for task in state.tasks %}
```
{% for task in state.tasks %}
{{ loop.index }}. {{ task.description }}
{% endfor %}
```