Skip to content

Commit

Permalink
fix: locale missing page - no data due to missing await (#10550)
Browse files Browse the repository at this point in the history
  • Loading branch information
hochan222 authored Feb 19, 2024
1 parent 6da4660 commit d022ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ router.get("/missing", async (req, res) => {

const label = `Find all missing translations (${locale})`;
console.time(label);
const found = gatherL10NstatsSection({ locale });
const found = await gatherL10NstatsSection({ locale });
console.timeEnd(label);
res.json(found);
});
Expand Down

0 comments on commit d022ba5

Please sign in to comment.