Skip to content

Commit

Permalink
Update packages/server/src/routes/grants.js
Browse files Browse the repository at this point in the history
Co-authored-by: Tyler Hendrickson <[email protected]>
  • Loading branch information
lsr-explore and TylerHendrickson authored Oct 22, 2024
1 parent df45ad1 commit 293aa49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/routes/grants.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ router.get('/', requireUser, async (req, res) => {
},
orderBy: req.query.orderBy,
orderDesc: req.query.orderDesc,
showForecastedGrants: process.env.SHOW_FORECASTED_GRANTS,
showForecastedGrants: process.env.SHOW_FORECASTED_GRANTS === 'true',
});
res.json(grants);
});
Expand Down

0 comments on commit 293aa49

Please sign in to comment.