Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
MiraGeowerkstatt committed Jul 28, 2022
1 parent a4ee42c commit 0ea17e8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/ClientApp/src/components/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export default function Search(props) {
query += `&bezeichnung=${encodeURIComponent(formData.bezeichnung)}`;
query += `&erstellungsdatum=${formData.erstellungsDatum ? new Date(formData.erstellungsDatum).toDateString() : ""}`;
query += `&mutationsdatum=${formData.mutationsDatum ? new Date(formData.mutationsDatum).toDateString() : ""}`;
console.log(query);
getStandorte(query);
};

Expand Down

0 comments on commit 0ea17e8

Please sign in to comment.