Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
k1ch committed Jan 6, 2025
1 parent a220747 commit bf91483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/api_endpoints/tenants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const getTenants = async (req, res, next) => {
return acc
}, {})
const tenants = await dbAdminTenant.getTenants(filters, sort, order)
res.status(200).send(tenants);
res.status(200).send(tenants)
} catch ({ httpStatusCode = 500, message }) {
return next(createError(httpStatusCode, { message }))
}
Expand Down

0 comments on commit bf91483

Please sign in to comment.