We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1cdfe commit de99358Copy full SHA for de99358
infrastructure/eid-wallet/src/routes/(app)/settings/pin/+page.svelte
@@ -34,11 +34,11 @@ $effect(() => {
34
</div>
35
<div>
36
<p class="mb-[1vh]">Enter your new PIN</p>
37
- <InputPin bind:pin={newPin} variant="sm"/>
+ <InputPin bind:pin={newPin} {isError} variant="sm"/>
38
39
40
<p class="mb-[1vh]">Confirm new PIN</p>
41
- <InputPin bind:pin={repeatPin} variant="sm"/>
+ <InputPin bind:pin={repeatPin} {isError} variant="sm"/>
42
43
<p class={`text-danger mt-[3.4vh] ${isError ? "block" : "hidden"}`}>Your PIN does not match, try again.</p>
44
</section>
0 commit comments