From f08d861c34953146c7a39b76158f518a79f7d9e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Chavarr=C3=ADa?= Date: Tue, 22 Feb 2022 19:36:22 -0600 Subject: [PATCH] fix: lint code --- src/ux/createKeys/new/ConfirmNewMasterKeyScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ux/createKeys/new/ConfirmNewMasterKeyScreen.tsx b/src/ux/createKeys/new/ConfirmNewMasterKeyScreen.tsx index 125add060..83a9b12b5 100644 --- a/src/ux/createKeys/new/ConfirmNewMasterKeyScreen.tsx +++ b/src/ux/createKeys/new/ConfirmNewMasterKeyScreen.tsx @@ -20,7 +20,7 @@ const shuffle = (array: string[]) => { randomIndex // While there remain elements to shuffle... - while (currentIndex != 0) { + while (currentIndex !== 0) { // Pick a remaining element... randomIndex = Math.floor(Math.random() * currentIndex) currentIndex--