From 3cee501da1b74bc3a9ab29a8c7083a1b69c355a4 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Tue, 20 Jun 2017 01:08:26 -0500 Subject: [PATCH] format --- .../components/GenerateWalletPasswordComponent.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordComponent.jsx b/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordComponent.jsx index 23cc2d81..b4e34974 100644 --- a/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordComponent.jsx +++ b/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordComponent.jsx @@ -5,7 +5,6 @@ import GenerateWalletPasswordInputComponent from './GenerateWalletPasswordInputC import LedgerTrezorWarning from './LedgerTrezorWarning'; import translate from 'translations'; - // VALIDATORS const minLength = min => value => { return value && value.length < min ? `Must be ${min} characters or more` : undefined