From f8b6dc7aef51ccc82d163f015612c7640f0be365 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 28 Jun 2020 08:20:15 -0700 Subject: [PATCH] Use "answer" instead of "answers" when there is only one item in a category It's funny that here I'm taking advantage of the witespace elimination that I complained about just a couple of commits ago. Ah well. --- empathy/empathy.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index d7e6f6f..6133463 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -768,7 +768,8 @@ class ActivePrompt extends React.PureComponent {

Remember, you're trying to match your answers with what the other players submit. - Give {this.props.prompt.items} answers for the following prompt: + Give {this.props.prompt.items} answer + {this.props.prompt.items > 1 ? 's' : ''} for the following prompt:

{this.props.prompt.prompt}

-- 2.43.0