Add logic to "log out of all others".

Consider tablet as desktop device.
This commit is contained in:
Paul
2021-07-08 14:29:21 +01:00
parent a3fa0b0807
commit 69193e9a46
2 changed files with 22 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import { isDesktop, isMobile, isTablet } from "react-device-detect";
export const isTouchscreenDevice =
isDesktop && !isTablet
(isDesktop || isTablet)
? false
: (typeof window !== "undefined"
? navigator.maxTouchPoints > 0