Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
hippotastic authored and astrobot-houston committed Apr 12, 2023
1 parent e520924 commit 2563642
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions scripts/tuesday-bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ async function setDiscordMessage() {
);

const list = toTranslate
.filter(s => Object.keys(s.translations)
.filter(l => s.translations[l]?.isMissing || s.translations[l]?.isOutdated)
.length > 0)
.filter(
(s) =>
Object.keys(s.translations).filter(
(l) => s.translations[l]?.isMissing || s.translations[l]?.isOutdated
).length > 0
)
.map((s) => {
const langs =
Object.keys(s.translations).filter(
Expand Down

0 comments on commit 2563642

Please sign in to comment.