style: fix linting issues met ESLint

This commit is contained in:
Lint Action 2025-03-11 03:09:08 +00:00
parent a30c4d0d32
commit aa1a85e64e
24 changed files with 76 additions and 90 deletions

View file

@ -11,7 +11,7 @@ class BlockImageProcessor extends InlineImageProcessor {
}
override renderFn(imageUrl: string){
let inlineHtml = super.render(imageUrl);
const inlineHtml = super.render(imageUrl);
return DOMPurify.sanitize(`<div>${inlineHtml}</div>`);
}
}