Skip to content

Commit

Permalink
chore: fix prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
HRemonen committed Jul 16, 2024
1 parent 465f599 commit 1c2d1b1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/server/routes/analytic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ analyticRouter.get(
async (req, res) => {
const { surveyName } = req.params

const surveyAnswerDistribution = await getSurveyAnswerDistribution(
surveyName
)
const surveyAnswerDistribution =
await getSurveyAnswerDistribution(surveyName)

return res.status(200).send(surveyAnswerDistribution)
}
Expand Down

0 comments on commit 1c2d1b1

Please sign in to comment.