You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const isMacDevice = /Macintosh|Mac OS X/i.test(navigator.userAgent);
if (isMacDevice) {
console.log("The website is accessed from a Mac device.");
} else {
console.log("The website is not accessed from a Mac device.");
}