We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b545d0 commit 8b291ccCopy full SHA for 8b291cc
src/pages/ReimbursementAccount/CompanyStep.js
@@ -65,21 +65,11 @@ class CompanyStep extends React.Component {
65
* @returns {Boolean}
66
*/
67
validate() {
68
- if (!this.state.password.trim()) {
69
- Growl.error(this.props.translate('common.passwordCannotBeBlank'));
70
- return false;
71
- }
72
-
73
if (!isValidAddress(this.state.addressStreet)) {
74
Growl.error(this.props.translate('bankAccount.error.addressStreet'));
75
return false;
76
}
77
78
- if (this.state.addressState === '') {
79
- Growl.error(this.props.translate('bankAccount.error.addressState'));
80
81
82
83
if (!isValidZipCode(this.state.addressZipCode)) {
84
Growl.error(this.props.translate('bankAccount.error.zipCode'));
85
0 commit comments