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 38c597e commit 4c86439Copy full SHA for 4c86439
src/frontend/src/lib/components/wizards/createRecoveryPhrase/views/Verify.svelte
@@ -24,9 +24,11 @@
24
selectedIndexes.length === recoveryPhrase.length,
25
);
26
27
+ // Add index to selection
28
const handleSelect = (index: number) => {
29
selectedIndexes = [...selectedIndexes, index];
30
};
31
+ // Remove last selected index
32
const handleUndo = () => {
33
selectedIndexes = selectedIndexes.slice(0, -1);
34
0 commit comments