Remove console.log

This commit is contained in:
Greg Shuflin 2021-09-12 22:13:04 -07:00
parent 3a261bef95
commit 7c5e16acc3
1 changed files with 0 additions and 2 deletions

View File

@ -84,7 +84,6 @@ const SaiEntry = (props: {entry: SaiEntryProps}) => {
const JutEntry = (props: {entry: JutEntryProps}) => {
const {entry} = props;
console.log(props);
return (
<div className="searchResult" key={ entry.id }>
@ -211,7 +210,6 @@ const App = (_props) => {
const handleLangChange = (evt) => {
const conlang: Conlang = evt.target.value as Conlang;
console.log('Conlang in handlelangchange', conlang);
setConlang(conlang);
setSearchResults(null);
};