Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpeiris committed Sep 23, 2021
1 parent 1a3613e commit ee79e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/detect-safari.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { detect } from "detect-browser";
export function isSafari() {
const browser = detect();
if (!browser) return false;
return ["iOS", "Mac OS"].includes(browser.os) && ["safari", "ios"].includes(browser.name)
return ["iOS", "Mac OS"].includes(browser.os) && ["safari", "ios"].includes(browser.name);
}

0 comments on commit ee79e1b

Please sign in to comment.