fix(devices): typo in device name Desktop Edge (#8233)

This commit is contained in:
Bùi Gia Thịnh 2021-08-17 03:38:26 +07:00 committed by GitHub
parent 99c9564810
commit 1e8e547023
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1216,7 +1216,7 @@
"hasTouch": false,
"defaultBrowserType": "chromium"
},
"Dekstop Edge": {
"Desktop Edge": {
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4595.0 Safari/537.36 Edg/94.0.4595.0",
"screen": {
"width": 1920,

2
types/types.d.ts vendored
View file

@ -13032,7 +13032,7 @@ type Devices = {
"Desktop Firefox HiDPI": DeviceDescriptor;
"Desktop Safari": DeviceDescriptor;
"Desktop Chrome": DeviceDescriptor;
"Dekstop Edge": DeviceDescriptor;
"Desktop Edge": DeviceDescriptor;
"Desktop Firefox": DeviceDescriptor;
[key: string]: DeviceDescriptor;
}