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 f07fc77 commit bbdf16eCopy full SHA for bbdf16e
packages/core/src/shared/telemetry/util.ts
@@ -302,14 +302,12 @@ export async function getComputeEnvType(): Promise<EnvType> {
302
return 'wsl'
303
} else if (isAutomation()) {
304
return 'test'
305
- } else if (!env.remoteName) {
306
- return 'local'
307
} else if (web) {
308
return 'web'
309
} else if (env.remoteName) {
310
return 'remote'
311
} else {
312
- return 'unknown'
+ return 'local'
313
}
314
315
0 commit comments