Skip to content

Commit

Permalink
☝️ Make sure each page has exactly one H1 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
GianfrancoBazzani committed Jul 17, 2024
1 parent 0e3df32 commit e3462e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/containers/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class App extends React.Component {
<div className="deploy-window">
{/*deploy window*/}
<h1>{randGoodIcon()}</h1>
<h1>{strings.deployMessageTitle}</h1>
<h2>{strings.deployMessageTitle}</h2>
<br />
{strings.deployMessage}
{supportedNetworksList(supportedNetworks)}
Expand All @@ -212,11 +212,11 @@ class App extends React.Component {
<div className="deploy-window">
{/*deprecation window*/}
<h1>{randBadIcon()}</h1>
<h1>
<h2>
{isDeprecatedNetwork(this.state.chainId)
? strings.deprecatedNetwork
: strings.networkBeingDeprecated}
</h1>
</h2>
<br />
{strings.deployMessage}
{supportedNetworksList(supportedNetworks)}
Expand Down

0 comments on commit e3462e2

Please sign in to comment.