minor fixes
diff --git a/src/premium/attachmentLogs.ts b/src/premium/attachmentLogs.ts
index 8cfe080..156503a 100644
--- a/src/premium/attachmentLogs.ts
+++ b/src/premium/attachmentLogs.ts
@@ -1,4 +1,4 @@
-import { getCommandMentionByName } from './../utils/getCommandMentionByName';
+import { getCommandMentionByName } from './../utils/getCommandMentionByName.js';
 import client from "../utils/client.js";
 import keyValueList from "../utils/generateKeyValueList.js";
 import singleNotify from "../utils/singleNotify.js";
diff --git a/src/premium/createTranscript.ts b/src/premium/createTranscript.ts
index f09ac92..04fdc08 100644
--- a/src/premium/createTranscript.ts
+++ b/src/premium/createTranscript.ts
@@ -28,7 +28,7 @@
         const fetched = await (interaction.channel as TextChannel).messages.fetch({ limit: 100 });
         const deleted = await (interaction.channel as TextChannel).bulkDelete(fetched, true);
         deletedCount = deleted.size;
-        messages = messages.concat(Array.from(deleted.values()));
+        messages = messages.concat(Array.from(deleted.values() as Iterable<Message>));
     } while (deletedCount === 100);
 
     let out = "";