Skip to content

Commit be75f04

Browse files
authored
Increase tooltip duration (#3279)
* Increase tooltip duration * Upgrade duration.
1 parent 16435d0 commit be75f04

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/frontend/src/lib/components/wizards/auth/views/CreatePasskey.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
3737
if (result === "cancelled") {
3838
isCancelled = true;
39-
await waitFor(1000);
39+
await waitFor(4000);
4040
isCancelled = false;
4141
}
4242
};

src/frontend/src/lib/components/wizards/auth/views/PickAuthenticationMethod.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
3030
if (result === "cancelled") {
3131
isCancelled = true;
32-
await waitFor(1000);
32+
await waitFor(4000);
3333
isCancelled = false;
3434
}
3535
};

src/frontend/src/lib/components/wizards/auth/views/SetupOrUseExistingPasskey.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
2626
if (result === "cancelled") {
2727
isCancelled = true;
28-
await waitFor(1000);
28+
await waitFor(4000);
2929
isCancelled = false;
3030
}
3131
};

src/frontend/src/lib/components/wizards/migration/views/EnterIdentityNumber.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
3636
if (result === "cancelled") {
3737
isCancelled = true;
38-
await waitFor(1000);
38+
await waitFor(4000);
3939
isCancelled = false;
4040
}
4141
if (result === "wrongDomain") {
4242
isWrongDomain = true;
43-
await waitFor(2000); // We show this longer since it's unexpected
43+
await waitFor(4000);
4444
isWrongDomain = false;
4545
}
4646
};

0 commit comments

Comments
 (0)