Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit dcc3f1b

Browse files
committed
fix response object return
1 parent 5a407c2 commit dcc3f1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/project/show.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var projectConfig = require('./../projectConfig');
2626

2727
function show(params, cb) {
2828
var config = projectConfig.show();
29-
return cb(null, { body: config });
29+
return cb(null, config);
3030
}
3131

3232
module.exports = show;

0 commit comments

Comments
 (0)