diff --git a/components/AppealCard.tsx b/components/AppealCard.tsx
index efd0f50..fefe64d 100644
--- a/components/AppealCard.tsx
+++ b/components/AppealCard.tsx
@@ -22,44 +22,42 @@ export default function (props: AppealCardProps) {
}, [props.createdAt]);
return (
- <>
-
-
-
- Appeal for {props.username}#{props.discriminator}
-
- ID: {props.id}
-
-
- }>
-
- Response: Why were you banned?
- {props.ban_reason}
-
-
- Response: Why should we unban you?
- {props.reason_for_unban}
-
-
-
- Response: What have you learned from your mistake?
-
- {props.learned}
-
-
-
-
+
+
+
+ Appeal for {props.username}#{props.discriminator}
+
+ ID: {props.id}
+
+
+ }>
-
-
+ Response: Why were you banned?
+ {props.ban_reason}
-
-
- Submitted at: {dateString}
-
-
- >
+
+ Response: Why should we unban you?
+ {props.reason_for_unban}
+
+
+
+ Response: What have you learned from your mistake?
+
+ {props.learned}
+
+
+
+
+
+
+
+
+
+
+ Submitted at: {dateString}
+
+
);
}