navigate to desktop page when use tablet device

This commit is contained in:
MaysWind
2023-06-28 21:38:21 +08:00
parent 8fe765c097
commit 09a19b5f42
+1 -1
View File
@@ -13,7 +13,7 @@ function isMobileDevice() {
const device = uaParseRet.device;
if (device.type === 'mobile' || device.type === 'tablet' || device.type === 'wearable' || device.type === 'embedded') {
if (device.type === 'mobile' || device.type === 'wearable' || device.type === 'embedded') {
return true;
}