0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-22 18:17:52 +00:00

remove unused ref attributes

from editPage, homePage, newPage, and printPage, as well as splitPane.   The refs were declared, but never used.
This commit is contained in:
Gazook89
2024-05-16 23:23:42 -05:00
parent 8ae22bdc27
commit 78ce8aa6e3
5 changed files with 8 additions and 6 deletions

View File

@@ -103,7 +103,7 @@ const PrintPage = createClass({
<link href={`/themes/${rendererPath}/${themePath}/style.css`} type="text/css" rel='stylesheet'/>
{/* Apply CSS from Style tab */}
{this.renderStyle()}
<div className='pages' ref='pages' lang={this.state.brew.lang}>
<div className='pages' lang={this.state.brew.lang}>
{this.renderPages()}
</div>
</div>;