diff --git a/src/util/entities/Message.ts b/src/util/entities/Message.ts
index a4448a14..05e7dea5 100644
--- a/src/util/entities/Message.ts
+++ b/src/util/entities/Message.ts
@@ -29,7 +29,7 @@ import { Webhook } from "./Webhook";
import { Sticker } from "./Sticker";
import { Attachment } from "./Attachment";
import { NewUrlUserSignatureData } from "../Signing";
-import { ActionRowComponent, ApplicationCommandType, Embed, MessageSnapshot, MessageType, PartialMessage, Poll, Reaction } from "@spacebar/schemas";
+import { ApplicationCommandType, BaseMessageComponents, Embed, MessageSnapshot, MessageType, PartialMessage, Poll, Reaction } from "@spacebar/schemas";
import { MessageFlags } from "@spacebar/util";
import { JsonRemoveEmpty } from "../util/Decorators";
@@ -209,7 +209,7 @@ export class Message extends BaseClass {
@Column({ type: "simple-json", nullable: true })
@JsonRemoveEmpty
- components?: ActionRowComponent[];
+ components?: BaseMessageComponents[];
@Column({ type: "simple-json", nullable: true })
@JsonRemoveEmpty
|