From 7c5e16acc3f83d48cedc1b225602a3c6e4714b6f Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Sun, 12 Sep 2021 22:13:04 -0700 Subject: [PATCH] Remove console.log --- src/App.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index d9d35e1..c474efe 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -84,7 +84,6 @@ const SaiEntry = (props: {entry: SaiEntryProps}) => { const JutEntry = (props: {entry: JutEntryProps}) => { const {entry} = props; - console.log(props); return (
@@ -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); };