diff --git a/client/homebrew/pages/userPage/userPage.jsx b/client/homebrew/pages/userPage/userPage.jsx index 6c3af7907..7341c61ad 100644 --- a/client/homebrew/pages/userPage/userPage.jsx +++ b/client/homebrew/pages/userPage/userPage.jsx @@ -23,7 +23,7 @@ const UserPage = createClass({ }; }, getInitialState : function() { - const usernameWithS = this.props.username + (this.props.username.endsWith('s') ? `'` : `'s`); + const usernameWithS = this.props.username + (this.props.username.endsWith('s') ? `’` : `’s`); const brews = _.groupBy(this.props.brews, (brew)=>{ return (brew.published ? 'published' : 'private');