opc-agent 4.0.16 → 4.0.17
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.
|
@@ -2310,13 +2310,8 @@
|
|
|
2310
2310
|
let frCreatedAgentId = null;
|
|
2311
2311
|
|
|
2312
2312
|
async function checkFirstRun() {
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
const data = await res.json();
|
|
2316
|
-
if (data.firstRun) {
|
|
2317
|
-
showFirstRunWizard(data);
|
|
2318
|
-
}
|
|
2319
|
-
} catch {}
|
|
2313
|
+
// Skip first-run wizard — agents are configured via init
|
|
2314
|
+
return;
|
|
2320
2315
|
}
|
|
2321
2316
|
|
|
2322
2317
|
function showFirstRunWizard(data) {
|
package/package.json
CHANGED
package/src/studio-ui/index.html
CHANGED
|
@@ -2310,13 +2310,8 @@
|
|
|
2310
2310
|
let frCreatedAgentId = null;
|
|
2311
2311
|
|
|
2312
2312
|
async function checkFirstRun() {
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
const data = await res.json();
|
|
2316
|
-
if (data.firstRun) {
|
|
2317
|
-
showFirstRunWizard(data);
|
|
2318
|
-
}
|
|
2319
|
-
} catch {}
|
|
2313
|
+
// Skip first-run wizard — agents are configured via init
|
|
2314
|
+
return;
|
|
2320
2315
|
}
|
|
2321
2316
|
|
|
2322
2317
|
function showFirstRunWizard(data) {
|