0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-15 06:12:43 +00:00

Remove unused function parameter type

This commit is contained in:
G.Ambatte
2024-02-26 13:01:13 +13:00
parent a2b97abb2e
commit 26263c0bf8
2 changed files with 3 additions and 3 deletions

View File

@@ -137,7 +137,7 @@ const BrewItem = createClass({
<i className='fas fa-tags'/>
{brew.tags.map((tag, idx)=>{
const matches = tag.match(/^(?:([^:]+):)?([^:]+)$/);
return <span key={idx} className={matches[1]} onClick={()=>{this.updateFilter('tag', tag);}}>{matches[2]}</span>;
return <span key={idx} className={matches[1]} onClick={()=>{this.updateFilter(tag);}}>{matches[2]}</span>;
})}
</div>
</> : <></>