Skip to content

Commit

Permalink
fix: add missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
leafrogers committed May 19, 2024
1 parent 7fe4b1d commit 175a289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/pages/writing/weeknote.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const controller = async (req, res, next) => {
title: ''
};

res.send(view(data));
res.send(await view(data));
};

/**
Expand Down

0 comments on commit 175a289

Please sign in to comment.