fixed lint check missing semicolon

This commit is contained in:
rmarops 2022-11-16 22:27:18 -05:00
parent 2103edb604
commit 0e30843a75

View File

@ -315,7 +315,7 @@ exports.mongodbPing = async function (connectionString) {
} }
} catch (err) { } catch (err) {
console.error(err); console.error(err);
throw Error(err) throw Error(err);
} }
}; };