diff --git a/src/views/splash/activity-rows/follow-studio.jsx b/src/views/splash/activity-rows/follow-studio.jsx
index 7ac605f88..ea97509c9 100644
--- a/src/views/splash/activity-rows/follow-studio.jsx
+++ b/src/views/splash/activity-rows/follow-studio.jsx
@@ -23,8 +23,8 @@ const FollowStudioMessage = props => (
),
studioLink: (
-
- {props.followeeTitle}
+
+ {props.studioTitle}
)
}}
@@ -35,9 +35,9 @@ const FollowStudioMessage = props => (
FollowStudioMessage.propTypes = {
className: PropTypes.string,
followDateTime: PropTypes.string.isRequired,
- followeeId: PropTypes.string.isRequired,
- followeeTitle: PropTypes.string.isRequired,
- followerUsername: PropTypes.string.isRequired
+ followerUsername: PropTypes.string.isRequired,
+ studioId: PropTypes.string.isRequired,
+ studioTitle: PropTypes.string.isRequired
};
module.exports = FollowStudioMessage;
diff --git a/src/views/splash/activity-rows/follow-user.jsx b/src/views/splash/activity-rows/follow-user.jsx
index 3db5bfd60..f730a2a6a 100644
--- a/src/views/splash/activity-rows/follow-user.jsx
+++ b/src/views/splash/activity-rows/follow-user.jsx
@@ -15,7 +15,7 @@ const FollowUserMessage = props => (
datetime={props.followDateTime}
>
diff --git a/src/views/splash/l10n.json b/src/views/splash/l10n.json
index 866b51663..5d9d9ea50 100644
--- a/src/views/splash/l10n.json
+++ b/src/views/splash/l10n.json
@@ -13,7 +13,7 @@
"messages.becomeCuratorText": "{username} became a curator of {studio}",
"messages.becomeManagerText": "{username} was promoted to manager of {studio}",
"messages.favoriteText": "{profileLink} favorited {projectLink}",
- "messages.followText": "{profileLink} is now following {followeeLink}",
+ "messages.followProfileText": "{profileLink} is now following {followeeLink}",
"messages.followStudioText": "{profileLink} is now following {studioLink}",
"messages.loveText": "{profileLink} loved {projectLink}",
"messages.remixText": "{profileLink} remixed {remixedProjectLink} as {projectLink}",
diff --git a/src/views/splash/presentation.jsx b/src/views/splash/presentation.jsx
index 0a8b54e5a..0d2be189b 100644
--- a/src/views/splash/presentation.jsx
+++ b/src/views/splash/presentation.jsx
@@ -66,9 +66,9 @@ class ActivityList extends React.Component {
);
case 'loveproject':