0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-21 00:42:48 +00:00

minor fixes

This commit is contained in:
Víctor Losada Hernández
2024-01-29 00:12:14 +01:00
parent bf1f2054de
commit 46d1f89b77
2 changed files with 10 additions and 10 deletions

View File

@@ -93,10 +93,8 @@ const ArchivePage = createClass({
}
this.updateUrl();
return <div className="foundBrews">
<div className="brewCount">{brews.length} Brews Found</div>
<div className="limit">
<p>{this.state.limit}</p>
</div>
<span className="brewCount">{brews.length} Brews Found</span>
<span className="limit">{this.state.limit}</span>
{brews.map((brew, index) => (
<BrewItem brew={brew} key={index} reportError={this.props.reportError}/>
))}