diff --git a/client/modules/IDE/components/AddToCollectionSketchList.jsx b/client/modules/IDE/components/AddToCollectionSketchList.jsx index 632cf676..2d3d1485 100644 --- a/client/modules/IDE/components/AddToCollectionSketchList.jsx +++ b/client/modules/IDE/components/AddToCollectionSketchList.jsx @@ -52,6 +52,7 @@ class SketchList extends React.Component { const sketchesWithAddedStatus = this.props.sketches.map(sketch => ({ ...sketch, isAdded: this.inCollection(sketch), + url: `/${this.props.username}/sketches/${sketch.id}`, })); let content = null;