Skip to content

Commit e6ab9e8

Browse files
committed
fix issues found due to linting
1 parent 8b830a4 commit e6ab9e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wrongsecrets-balancer/src/teams/teams.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async function validateHMAC(req, res, next) {
113113
}
114114
res.status(403).send({ message: 'Invalid validation, please stop doing this!' });
115115
} catch (error) {
116-
logger.warn("invalid hmac provided;");
116+
logger.warn('invalid hmac provided;');
117117
logger.warn(JSON.stringify(error));
118118
res.status(500).send({ message: 'Invalid validation, please stop doing this!' });
119119
}
@@ -143,7 +143,7 @@ async function validatePassword(req, res, next) {
143143
}
144144
}
145145
} catch (error) {
146-
logger.warn("error duing password validation");
146+
logger.warn('error duing password validation');
147147
logger.warn(JSON.stringify(error));
148148
res
149149
.status(500)

0 commit comments

Comments
 (0)