Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Commit

Permalink
Fix RemoveCase
Browse files Browse the repository at this point in the history
  • Loading branch information
RadiatedExodus committed Feb 13, 2024
1 parent ad42fb4 commit 16f7613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/Moderation/RemoveCase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const Command: MeteoriumCommand = {
value: userMention(Case.ModeratorUserId),
},
{ name: "Reason", value: Case.Reason },
{ name: "Moderator note", value: Case.ModeratorNote },
{ name: "Moderator note", value: Case.ModeratorNote != "" ? Case.ModeratorNote : "N/A" },
{
name: "Moderator attachment",
value: Case.ModeratorAttachment != "" ? Case.ModeratorAttachment : "N/A",
Expand Down

0 comments on commit 16f7613

Please sign in to comment.