1 files changed, 2 insertions, 2 deletions
diff --git a/src/schemas/uncategorised/ThreadCreationSchema.ts b/src/schemas/uncategorised/ThreadCreationSchema.ts
index 1ad85ce7..76ed1385 100644
--- a/src/schemas/uncategorised/ThreadCreationSchema.ts
+++ b/src/schemas/uncategorised/ThreadCreationSchema.ts
@@ -16,7 +16,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-import { ActionRowComponent, ChannelType, Embed } from "#schemas/api";
+import { BaseMessageComponents, ChannelType, Embed } from "#schemas/api";
import { MessageActivity } from "./MessageActivity";
import { MessageCreateAttachment, MessageCreateCloudAttachment } from "./MessageCreateSchema";
@@ -37,7 +37,7 @@ export interface ThreadCreationSchema {
users?: string[];
replied_user?: boolean;
};
- components?: ActionRowComponent[] | null;
+ components?: BaseMessageComponents[] | null;
sticker_ids?: string[];
activity?: MessageActivity;
application_id?: string;
|