From 76203928d26cf8319d97b17992ef32284fafc184 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Sat, 3 Sep 2022 22:07:23 +1200 Subject: [PATCH] Change apostrophe --- client/homebrew/pages/userPage/userPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');