Skip to content

Commit

Permalink
Fix the status embed
Browse files Browse the repository at this point in the history
  • Loading branch information
Pickysaurus committed Feb 3, 2025
1 parent 0780f93 commit b6caec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interactions/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ async function action(client: ClientExt, baseInteraction: CommandInteraction): P
.setDescription(statusPage.status.description)
.addFields(
statusPage.components.map(c => ({
name: c.name,
value: c.description,
name: c.name ?? `_No Name ${c.id}_`,
value: c.description ?? '_No description_',
inline: false,
}))
);
Expand Down

0 comments on commit b6caec5

Please sign in to comment.