fix: unneccessary null check for actionclose() removed

This commit is contained in:
medProgAyat 2025-10-13 13:42:15 +03:30
parent c589d95d7f
commit d9190f9abd

View file

@ -21,7 +21,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<div class="error-box"> <div class="error-box">
<p class="error-text">{error.message}</p> <p class="error-text">{error.message}</p>
<button class="btn btn-primary" on:click={closePage}> <button class="btn btn-primary" on:click={closePage}>
{tr.actionsClose() || "Got it"} {tr.actionsClose()}
</button> </button>
</div> </div>