1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

Fix small issues

This commit is contained in:
Brett Sun 2016-01-19 15:15:33 +01:00
parent efbc605fc8
commit 86ff1f88d0
2 changed files with 32 additions and 34 deletions

View File

@ -21,7 +21,7 @@ let ErrorNotFoundPage = React.createClass({
componentDidMount() {
// The previous page, if any, is the second item in the locationQueue
const { locationQueue: [ _, previousPage ] } = this.history;
const { locationQueue: [ , previousPage ] } = this.history;
if (previousPage) {
console.logGlobal('Page not found', {

View File

@ -57,7 +57,6 @@ let CylandLanding = React.createClass({
setDocumentTitle('CYLAND MediaArtLab');
return (
<div className="container">
<div className="ascribe-form-wrapper cyland-landing">
<div className="row">
<div className="col-xs-12">
@ -95,7 +94,6 @@ let CylandLanding = React.createClass({
</div>
</div>
</div>
</div>
);
}
});