i have funny problem in bootstrap 5.0.2
I have to double-click the button (data-bs-dismiss) to close the modal
Important note:I use many modal in page, But they open depending on the need
<div class="modal" id="open-rating-modal-for-order" tabindex="-1" aria-labelledby="open-call-modal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<form method='POST' onsubmit="return validate_rating_modal()">
<input type='hidden' name='page' value='submit-rate' />
<input type='hidden' name='csrf_token' value="{$csrf_token}" />
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">
rates
</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
</div>
</div>
</div>