From ce8ee3635472455b6c57714fcd3c22658fda8404 Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Sun, 29 Sep 2019 21:46:18 -0400 Subject: [PATCH] Fixed missing bracket --- functions/handlers/users.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/handlers/users.js b/functions/handlers/users.js index 3637574..240bfdd 100644 --- a/functions/handlers/users.js +++ b/functions/handlers/users.js @@ -37,6 +37,7 @@ exports.updateProfileInfo = (req, res) => { error: 'Error updating profile data' }); }) +}; exports.getUserDetails = (req, res) => { let userData = {}; @@ -70,4 +71,4 @@ exports.getUserDetails = (req, res) => { console.error(err); return res.status(500).json({ error: err.code}); }); -}; \ No newline at end of file +};