From a5afefc58f656f68f660a3b17093cb64631f7b6b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 14 Jun 2020 11:01:18 -0700 Subject: [PATCH] Tweak the error message when submitting results of judging I wanted this when debugging a confusing case of this error text appearing, (and we had the same text in two places). So having unique text here will help. In the end, the bug I was dealing with was from my Android browser having a persistent cache of a stale JavaScript file. --- empathy/empathy.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index c4aafde..011e196 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -413,7 +413,7 @@ class Ambiguities extends React.PureComponent { return; } } else { - add_message("danger", "An error occurred submitting your answers"); + add_message("danger", "An error occurred submitting the results of your judging"); return; } -- 2.43.0