We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ee7c4d commit ee2be1fCopy full SHA for ee2be1f
web/src/lib/device.ts
@@ -83,10 +83,9 @@ if (browser) {
83
// so they're enabled only on ios 18+ for now
84
haptics: modernIOS,
85
86
- // enable local processing by default
87
- // on desktop & in firefox on android
88
- // (first stage of rollout)
89
- defaultLocalProcessing: !device.is.mobile ||
+ // enable local processing by default on
+ // desktop, ios 18+, and firefox on android
+ defaultLocalProcessing: !device.is.mobile || modernIOS ||
90
(device.is.android && !device.browser.chrome),
91
};
92
0 commit comments