diff --git a/src/components/PostControls/index.tsx b/src/components/PostControls/index.tsx
index 27f12f372c..b25c012ba2 100644
--- a/src/components/PostControls/index.tsx
+++ b/src/components/PostControls/index.tsx
@@ -196,7 +196,7 @@ let PostControls = ({
-
-
+ requireAuth(() => onPressToggleLike())}
+ label={
+ post.viewer?.like
+ ? _(
+ msg({
+ message: `Unlike (${plural(post.likeCount || 0, {
+ one: '# like',
+ other: '# likes',
+ })})`,
+ comment:
+ 'Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun',
+ }),
+ )
+ : _(
+ msg({
+ message: `Like (${plural(post.likeCount || 0, {
+ one: '# like',
+ other: '# likes',
+ })})`,
+ comment:
+ 'Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form',
+ }),
+ )
+ }>
+
-
-
- requireAuth(() => onPressToggleLike())}
- label={
- post.viewer?.like
- ? _(
- msg({
- message: `Unlike (${plural(post.likeCount || 0, {
- one: '# like',
- other: '# likes',
- })})`,
- comment:
- 'Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun',
- }),
- )
- : _(
- msg({
- message: `Like (${plural(post.likeCount || 0, {
- one: '# like',
- other: '# likes',
- })})`,
- comment:
- 'Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form',
- }),
- )
- }>
-
-
-
-
+ isLiked={Boolean(post.viewer?.like)}
+ hasBeenToggled={hasLikeIconBeenToggled}
+ />
+
+ {/* Spacer! */}
+
-
+