@intuned/runtime-dev 1.3.11-deployment.0 → 1.3.11-deployment.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -263,7 +263,8 @@ function buildRunsPlaygroundQueryParams({
|
|
|
263
263
|
}) {
|
|
264
264
|
const params = new URLSearchParams();
|
|
265
265
|
if (!enableFirstRunExperience) return params.toString();
|
|
266
|
-
const input = settings.metadata?.defaultRunPlaygroundInput
|
|
266
|
+
const input = settings.metadata?.defaultRunPlaygroundInput;
|
|
267
|
+
if (!input) return params.toString();
|
|
267
268
|
if (testAuthSessionId) {
|
|
268
269
|
input.authSessionId = testAuthSessionId;
|
|
269
270
|
}
|