We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7234906 commit 044bb12Copy full SHA for 044bb12
1 file changed
packages/web-inspector/src/lib/telemetry.ts
@@ -157,7 +157,11 @@ export function maybeShowDisclosure(): void {
157
// module, keeping persistence.ts as an internal implementation detail.
158
export { isTelemetryOptedOut, setTelemetryOptOut };
159
160
-async function postBestEffort(url: string, body: string, distinctId: string): Promise<void> {
+async function postBestEffort(
161
+ url: string,
162
+ body: string,
163
+ distinctId: string,
164
+): Promise<void> {
165
if (typeof fetch === "undefined") return;
166
const controller = new AbortController();
167
const timeoutId = setTimeout(() => controller.abort(), FETCH_TIMEOUT_MS);
0 commit comments