Skip to content
Snippets Groups Projects

[JES] Strip out whitespace before processing the accounts. Fixes #102

Merged Jason Salyers requested to merge jsalyers-fix-whitespace-bug into develop
1 file
+ 1
0
Compare changes
  • Side-by-side
  • Inline
@@ -234,6 +234,7 @@ class ListManagement extends React.Component {
if (text === '') {
this.setState({ unmatched_accounts: [], validated_accounts: [] });
}
text = text.replace(/\s+/g, '');
this.setState({ unmatched_accounts: [] });
let accounts = [];
let validated_accounts = [];
Loading