X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=bc70a85f0df820b34c552de473df8d971352f1b4;hp=feff7775a99f782188474bab923da9e1580b8327;hb=0dfce9dfcf903be9bb4bd27a3b9121c81ac4cfa4;hpb=d7cc3b52d47ed3836cea1d82951ea4db6e8c591d diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index feff777..bc70a85 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -468,11 +468,9 @@ class Ambiguities extends React.PureComponent { for (let word of props.words) { const word_canon = canonize(word); - console.log("Canonized " + word + " to " + word_canon); let found_match = false; for (let set of word_sets) { const set_canon = canonize(set.values().next().value); - console.log("Comparing " + word_canon + " to " + set_canon); if (word_canon === set_canon) { set.add(word); found_match = true;; @@ -505,7 +503,7 @@ class Ambiguities extends React.PureComponent { const response = await fetch_post_json( `judged/${this.props.prompt.id}`,{ word_groups: this.state.word_sets.map(set => Array.from(set)), - kudos: Array.from(this.state.starred) + kudos: this.state.starred ? Array.from(this.state.starred) : null } );