0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-15 10:32:45 +00:00

Remove missed console.log debugging lines

This commit is contained in:
G.Ambatte
2024-02-25 11:47:34 +13:00
parent 0331f5cf5b
commit a2b97abb2e
2 changed files with 0 additions and 3 deletions

View File

@@ -130,7 +130,6 @@ const ListPage = createClass({
},
handleFilterTextChange : function(e){
// console.log(e);
this.setState({
filterString : e.target.value,
});
@@ -194,7 +193,6 @@ const ListPage = createClass({
renderTagsOptions : function(){
if(this.state.filterTags?.length == 0) return;
console.log('renderTags');
return <div className='tags-container'>
{_.map(this.state.filterTags, (tag, idx)=>{
const matches = tag.match(/^(?:([^:]+):)?([^:]+)$/);