Removes varialbe not used.

This commit is contained in:
gaba
2017-02-24 16:10:39 -08:00
parent d650779c1a
commit a429af3c0e
+1 -1
View File
@@ -77,7 +77,7 @@ const HandleAuthPopupCallback = (req, res, next) => (err, user) => {
}
// We logged in the user! Let's send back the user data.
res.render('auth-callback', {err: null, data: JSON.stringify(user), changeusername: true});
res.render('auth-callback', {err: null, data: JSON.stringify(user)});
});
};