Skip to content

Commit bf91483

Browse files
committed
minor
1 parent a220747 commit bf91483

File tree

1 file changed

+1
-1
lines changed
  • server/src/api_endpoints/tenants

1 file changed

+1
-1
lines changed

server/src/api_endpoints/tenants/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const getTenants = async (req, res, next) => {
2222
return acc
2323
}, {})
2424
const tenants = await dbAdminTenant.getTenants(filters, sort, order)
25-
res.status(200).send(tenants);
25+
res.status(200).send(tenants)
2626
} catch ({ httpStatusCode = 500, message }) {
2727
return next(createError(httpStatusCode, { message }))
2828
}

0 commit comments

Comments
 (0)