Remove console.log

This commit is contained in:
Greg Shuflin 2021-09-12 22:13:04 -07:00
parent 3a261bef95
commit 7c5e16acc3

View File

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