Remove "Add sketches" link as it have been replaced by primary button

This commit is contained in:
Andrew Nicolaou 2019-10-20 15:33:02 +02:00
parent a82e079782
commit 4c5e62bce8
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ class Collection extends React.Component {
_renderEmptyTable() {
if (!this.hasCollectionItems()) {
return (<p className="sketches-table__empty">No sketches in collection. <button onClick={this.showAddSketches}>Add some sketches</button></p>);
return (<p className="sketches-table__empty">No sketches in collection</p>);
}
return null;
}