diff --git a/client/src/app/torrent/torrent.component.ts b/client/src/app/torrent/torrent.component.ts
index 3054525..2df2ed1 100644
--- a/client/src/app/torrent/torrent.component.ts
+++ b/client/src/app/torrent/torrent.component.ts
@@ -108,7 +108,7 @@ export class TorrentComponent implements OnInit {
}),
);
- var blob = new Blob([byteArray], { type: 'application/x-bittorrent' });
+ const blob = new Blob([byteArray], { type: 'application/x-bittorrent' });
saveAs(blob, `${this.torrent.rdName}.torrent`);
}
diff --git a/client/src/index.html b/client/src/index.html
index c00d504..baa81c3 100644
--- a/client/src/index.html
+++ b/client/src/index.html
@@ -6,11 +6,10 @@