From d67acf626330fc135bb405f1c910872adc75e6bb Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Mon, 26 Dec 2016 01:32:48 -0600 Subject: [PATCH] fix linting error --- server/boot/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/boot/user.js b/server/boot/user.js index b31a81e93f..29e3338ba8 100644 --- a/server/boot/user.js +++ b/server/boot/user.js @@ -228,7 +228,7 @@ module.exports = function(app) { function signout(req, res) { req.logout(); req.flash('success', { - msg: `You have successfully signed out.` + msg: 'You have successfully signed out.' }); res.redirect('/signin'); }