Skip to content

Commit be5d10c

Browse files
committed
fix text
1 parent 3762871 commit be5d10c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/pages/appeals/form.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,15 @@ if (Astro.request.method === "POST") {
106106
}
107107

108108
<label>
109-
Why were you {type === "ban" ? "banned" : type === "mute" ? "muted" : "blocked from this channel"}?
109+
Why were you {
110+
type === "ban"
111+
? "banned"
112+
: type === "mute"
113+
? "muted"
114+
: type === "channelBlock"
115+
? "blocked from this channel"
116+
: "given this role"
117+
}?
110118
<br />
111119
<textarea name="punishmentReason" required></textarea>
112120
</label><br />

0 commit comments

Comments
 (0)