Skip to content

Commit

Permalink
fix: lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
lucachaco committed Feb 23, 2022
1 parent 8d3736d commit f08d861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ux/createKeys/new/ConfirmNewMasterKeyScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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--
Expand Down

0 comments on commit f08d861

Please sign in to comment.