-
+
{remixes.length === 0 ? (
// TODO: style remix invitation
@@ -32,6 +40,7 @@ const RemixList = props => {
};
RemixList.propTypes = {
+ projectId: PropTypes.string,
remixes: PropTypes.arrayOf(projectShape)
};
diff --git a/src/views/preview/studio-list.jsx b/src/views/preview/studio-list.jsx
index 2b75e4e4d..d44244397 100644
--- a/src/views/preview/studio-list.jsx
+++ b/src/views/preview/studio-list.jsx
@@ -10,8 +10,16 @@ const StudioList = props => {
if (studios.length === 0) return null;
return (
-
-
+
{studios.length === 0 ? (
// TODO: style remix invitation
@@ -32,6 +40,7 @@ const StudioList = props => {
};
StudioList.propTypes = {
+ projectId: PropTypes.string,
studios: PropTypes.arrayOf(projectShape)
};