Skip to content

Commit

Permalink
fix(EDPUnblock): reset dynamic OS and Browser info retrieving
Browse files Browse the repository at this point in the history
  • Loading branch information
Truiteseche committed Apr 3, 2024
1 parent 433b9aa commit a72799e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/EdpUnblock/EdpUnblock.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ const browserLogosInfos = {
},
}

// const userOS = getOS();
// const userBrowser = getBrowser();
const userOS = "iOS";
const userBrowser = "Edge";
const userOS = getOS();
const userBrowser = getBrowser();
// const userOS = "iOS";
// const userBrowser = "Edge";
const nonCompatibleIOSBrowsers = ["Safari", "Chromium", "Chrome", "Edge", "Opera", "Firefox"]
const nonCompatibleAndroidBrowsers = ["Safari", "Chromium", "Chrome", "Edge", "Opera"] // le safari est franchement improbable mais edge case on sait jamais
console.log("userOS:", userOS, "userBrowser:", userBrowser);
Expand Down

0 comments on commit a72799e

Please sign in to comment.