1 files changed, 4 insertions, 4 deletions
diff --git a/src/schemas/api/bots/SendableModalSubmitDataSchema.ts b/src/schemas/api/bots/SendableModalSubmitDataSchema.ts
index 33c4b00a..e2c64cdf 100644
--- a/src/schemas/api/bots/SendableModalSubmitDataSchema.ts
+++ b/src/schemas/api/bots/SendableModalSubmitDataSchema.ts
@@ -2,8 +2,8 @@ import { UploadAttachmentRequestSchema } from "@spacebar/schemas";
import { Attachment, Snowflake } from "@spacebar/util";
export interface SendableModalSubmitDataSchema {
- id: Snowflake;
- custom_id: string;
- // components: ModalSubmitComponentData[]; // TODO: do this
- attachments?: UploadAttachmentRequestSchema[];
+ id: Snowflake;
+ custom_id: string;
+ // components: ModalSubmitComponentData[]; // TODO: do this
+ attachments?: UploadAttachmentRequestSchema[];
}
|