Skip to content
Snippets Groups Projects
Unverified Commit bbff5437 authored by Michael Clark's avatar Michael Clark Committed by GitHub
Browse files

:wrench: Remove unneeded console log (#3394)

* remove unneeded console log

* release notes
parent 008a8a78
No related branches found
No related tags found
No related merge requests found
......@@ -308,9 +308,7 @@ export function PayeeAutocomplete({
if (!hasPayeeInput) {
return filteredSuggestions;
}
filteredSuggestions.forEach(s => {
console.log(s.name + ' ' + s.id);
});
return [{ id: 'new', favorite: false, name: '' }, ...filteredSuggestions];
}, [commonPayees, payees, focusTransferPayees, accounts, hasPayeeInput]);
......
---
category: Maintenance
authors: [MikesGlitch]
---
Remove unneded Payee typeahead console log
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment