Skip to content

Commit

Permalink
fix: remove a condition to the never defined retry_join_meeting var
Browse files Browse the repository at this point in the history
The var was never truthy because it was never defined anywhere, so the
condition was always true. Thus, the condition was useless.
  • Loading branch information
azmeuk committed Dec 13, 2023
1 parent 33609e0 commit c27e193
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions web/b3desk/templates/meeting/join.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,12 @@ <h1 class="fr-h2">{% trans %}Rejoindre {{ the_meeting }}{% endtrans %}</h1>
<p>Le nom affiché sera « <tt id="namePreview"></tt> ».</p>
{% endif %}

{% if not retry_join_meeting %}
<div class="fr-grid-row fr-grid-row--gutters">
<div class="fr-col">
<button type="submit" class="fr-btn fr-btn-primary" >{% trans %}Rejoindre{% endtrans %}</button>
</div>
</div>
{% endif %}

{% if role != "authenticated" and not user %}
<div class="fr-grid-row fr-grid-row--gutters">
<div class="fr-col">
Expand Down

0 comments on commit c27e193

Please sign in to comment.