[breaking] fix typos

This commit is contained in:
TomatoCake
2024-07-01 20:31:47 +02:00
parent 8fe0c9f46b
commit 611e58090b
15 changed files with 113 additions and 115 deletions

View File

@@ -269,11 +269,11 @@ class Message{
build.appendChild(text)
if(this.attachments.length){
console.log(this.attachments)
const attatch = document.createElement("tr")
const attach = document.createElement("tr")
for(const thing of this.attachments){
attatch.appendChild(thing.getHTML())
attach.appendChild(thing.getHTML())
}
messagedwrap.appendChild(attatch)
messagedwrap.appendChild(attach)
}
if(this.embeds.length){
const embeds = document.createElement("tr")