mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Remove unnecessary type
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
bffebb9304
commit
27f74b3ebd
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ function remoteRender(event: MessageEvent): void {
|
|||
const img = document.createElement("span"); // we'll mask it as an image
|
||||
img.id = "img";
|
||||
|
||||
const a: HTMLAnchorElement = document.createElement("a");
|
||||
const a = document.createElement("a");
|
||||
a.id = "a";
|
||||
a.rel = "noreferrer noopener";
|
||||
a.download = data.download;
|
||||
|
|
Loading…
Reference in a new issue