Skip to content

Commit

Permalink
fix lint errors, add wii/3ds referrals
Browse files Browse the repository at this point in the history
  • Loading branch information
vgmoose committed Aug 2, 2024
1 parent 45d938f commit 1a771a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ class Header extends Component {
<option value="switch">Switch&nbsp;&nbsp;</option>
<option value="wiiu">Wii U&nbsp;&nbsp;</option>
<option value="all">Both&nbsp;&nbsp;</option>
<option value="3ds">3DS&nbsp;&nbsp;</option>
</select>
</Fragment>);

Expand Down
2 changes: 1 addition & 1 deletion src/InfoPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ class InfoPage extends Component {
</p>
<br/><br/><br/><br/><br/><br/><br/><br/>
</div>;
} else if (location === "/dmca-request" || location == "/request-takedown") {
} else if (location === "/dmca-request" || location === "/request-takedown") {
const allPackages = this.state.allPackages;

pageText = <div style={{maxWidth: "100%"}}>
Expand Down
3 changes: 3 additions & 0 deletions src/PlatformPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const PlatformPicker = ({path = ""}) => {
return (<div style={{width: 500, maxWidth: "100%", margin: "0 auto", marginTop: 40}}>
<h2 style={{fontSize: 18, padding: 5, backgroundColor: "unset", textAlign: "center"}}>Choose a Platform</h2>
<div style={{display: "flex"}} id="platChooserList">{ platformSelect }</div>
<p style={{textAlign: "center"}}>
Looking for Wii or 3DS homebrew?<br/>Check out <a href="https://oscwii.org">Open Shop Channel</a> or <a href="https://db.universal-team.net">Universal-DB</a>!
</p>
</div>);
};

Expand Down

0 comments on commit 1a771a2

Please sign in to comment.