Fixed missing bracket

This commit is contained in:
Clayton Wilson 2019-09-29 21:46:18 -04:00 committed by GitHub
parent 13fcd9b3ab
commit ce8ee36354
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,6 +37,7 @@ exports.updateProfileInfo = (req, res) => {
error: 'Error updating profile data' error: 'Error updating profile data'
}); });
}) })
};
exports.getUserDetails = (req, res) => { exports.getUserDetails = (req, res) => {
let userData = {}; let userData = {};
@ -70,4 +71,4 @@ exports.getUserDetails = (req, res) => {
console.error(err); console.error(err);
return res.status(500).json({ error: err.code}); return res.status(500).json({ error: err.code});
}); });
}; };