Unneeded variable removal.

This commit is contained in:
Marie Kiryanova 2023-01-31 17:15:19 -05:00
parent cb8e343f1a
commit d9c4fc3756

View file

@ -95,7 +95,6 @@
// Attempt autodetection of their operating system
var userAgent = navigator.userAgent.toLowerCase();
var os = "Other";
const unsupportedPlatforms = ["Other", "Mac"]
if (userAgent.indexOf("windows") !== -1) {
os = "Windows";