Add option for direct deployment to heroku and other small fixes

This commit is contained in:
zyachel 2022-05-06 19:33:49 +05:30
parent 7bcd19d8b0
commit 50b0308f7d
19 changed files with 297 additions and 1541 deletions

View file

@ -21,7 +21,6 @@ export const unansweredQuestion = catchAsyncErrors(async (req, res, next) => {
res.status(200).render('answers', {
title: answers.question.text.spans.map(span => span.text).join(''),
data: answers,
math: answers.hasMath,
});
});
@ -35,7 +34,6 @@ export const answeredQuestion = catchAsyncErrors(async (req, res, next) => {
res.status(200).render('answers', {
title: answers.question.text.spans.map(span => span.text).join(''),
data: answers,
math: answers.hasMath,
});
});