Fixed typo in string template

This commit is contained in:
Kasra Bigdeli
2024-09-14 15:54:13 -07:00
parent 92e42eaed9
commit 7784c31fcd
+1 -1
View File
@@ -29,7 +29,7 @@ router.post('/register/', function (req, res, next) {
res.send(
new BaseApi(
ApiStatusCodes.STATUS_OK,
'Project created: ${projectName}'
`Project created: ${projectName}`
)
)
})