Commit 42804a1d authored by Luke Schoen's avatar Luke Schoen
Browse files

review-fix: Change to unshift instead of spread operator

parent 37724a3b
......@@ -41,7 +41,7 @@ class Tokens extends PureComponent {
];
if (this.isParitySignerAccount() === false) {
menuItems = [backupAccountItem, ...menuItems];
menuItems.unshift(backupAccountItem);
}
return menuItems;
......
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