Skip to content

Commit

Permalink
remove the cast to int
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed May 27, 2024
1 parent e3730cc commit ac6b1c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<div class="mdl-card__title center" >
<p class="mdl-card__subtitle-text">
<?= $this->t('{material:mfa:running_out_info}', ['{numBackupCodesRemaining}' => (int)$this->data['numBackupCodesRemaining']]) ?>
<?= $this->t('{material:mfa:running_out_info}', ['{numBackupCodesRemaining}' => $this->data['numBackupCodesRemaining']]) ?>
</p>
</div>

Expand Down

0 comments on commit ac6b1c2

Please sign in to comment.