From e466aec16fb6ac66bdc8b919f5613d17b0cb5d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Burzy=C5=84ski?= Date: Fri, 6 Dec 2024 16:11:38 +0100 Subject: [PATCH] Fixed `DEVTOOLS_URL` fallback value (#10626) --- scripts/perf-analysis/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/perf-analysis/main.ts b/scripts/perf-analysis/main.ts index de3ba86940a..2f9f906d5c5 100644 --- a/scripts/perf-analysis/main.ts +++ b/scripts/perf-analysis/main.ts @@ -14,12 +14,12 @@ import { const PLAYWRIGHT_TIMEOUT = 60_000; const DISPATCH_URL = process.env.DISPATCH_ADDRESS ?? "wss://dispatch.replay.io"; -const DEVTOOL_URL = process.env.DEVTOOLS_URL ?? "https://app.replay.io"; +const DEVTOOLS_URL = process.env.DEVTOOLS_URL || "https://app.replay.io"; const tests = [ { title: "devtools-object-preview", - url: `${DEVTOOL_URL}/recording/appreplayio--87db126a-82cf-4477-b244-b57a118d0b1b`, + url: `${DEVTOOLS_URL}/recording/appreplayio--87db126a-82cf-4477-b244-b57a118d0b1b`, script: devtoolsObjectPreview, }, ];