From dfa550db86bf61af103367379c49b5497328dd85 Mon Sep 17 00:00:00 2001 From: PoolloverNathan <24194027+PoolloverNathan@users.noreply.github.com> Date: Fri, 13 May 2022 10:00:13 -0400 Subject: [PATCH] Fix extra `to` that is not grammar --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 628ac3b..b51c70e 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -274,7 +274,7 @@ function play_random_swell() { function newuser_action(data, lid, svg_area) { play_random_swell(); - var messages = ['Welcome to ' + data.user + ', Wikipedia\'s newest user!', + var messages = ['Welcome ' + data.user + ', Wikipedia\'s newest user!', 'Wikipedia has a new user, ' + data.user + '! Welcome!', 'Welcome, ' + data.user + ' has joined Wikipedia!']; var message = Math.round(Math.random() * (messages.length - 1));