Commit 7b164521 authored by fro's avatar fro
Browse files

fix typo

parent 8b4e3575
......@@ -129,10 +129,10 @@ export default class AccountSeed extends Component {
if (WORDS[fromIndex] === input) {
fromIndex = 0;
}
const SUGGETIONS_COUNT = 5;
const SUGGESTIONS_COUNT = 5;
const result = [];
let yielded = 0;
while (yielded < SUGGETIONS_COUNT && WORDS[fromIndex] !== undefined) {
while (yielded < SUGGESTIONS_COUNT && WORDS[fromIndex] !== undefined) {
++fromIndex;
if (words.indexOf(WORDS[fromIndex]) !== -1) {
continue;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment