0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-11 00:22:43 +00:00

remove console.log

This commit is contained in:
Trevor Buckner
2022-09-06 22:57:00 -04:00
parent 8709545f14
commit c0a14a5618

View File

@@ -97,7 +97,6 @@ const BrewItem = createClass({
const brew = this.props.brew; const brew = this.props.brew;
if(Array.isArray(brew.tags)) { // temporary fix until dud tags are cleaned if(Array.isArray(brew.tags)) { // temporary fix until dud tags are cleaned
brew.tags = brew.tags?.filter(tag => tag); //remove tags that are empty strings brew.tags = brew.tags?.filter(tag => tag); //remove tags that are empty strings
console.log(brew.tags);
} }
const dateFormatString = 'YYYY-MM-DD HH:mm:ss'; const dateFormatString = 'YYYY-MM-DD HH:mm:ss';