Skip to content

Commit a11eefe

Browse files
committed
fix: Edge browser name
1 parent c548f08 commit a11eefe

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

vis/js/HeadstartRunner.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,13 @@ class HeadstartRunner {
6666
}
6767

6868
private checkIsSupportedBrowser() {
69-
const SUPPORTED = ["Chrome", "Firefox", "Safari", "Edge", "Opera"] as const;
69+
const SUPPORTED = [
70+
"Chrome",
71+
"Firefox",
72+
"Safari",
73+
"Microsoft Edge",
74+
"Opera",
75+
] as const;
7076

7177
const browser = Bowser.getParser(window.navigator.userAgent);
7278
const browserName = browser.getBrowserName(true);

0 commit comments

Comments
 (0)