You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(simulator): Correct refresh signaling and selector notices
Return explicit scheduling status from simulator defaults refresh so MCP
bootstrap logs only claim refresh scheduling when one is actually queued.
Tighten session default notices so cleared selector messages only appear
when a counterpart existed, and changed messages only appear on actual
selector changes.
Also prefer workspace defaults over project defaults when both are present,
remove an unnecessary infer-platform export, and drop emoji from simulator
build/run user-facing success strings.
Co-Authored-By: Codex <noreply@openai.com>
Copy file name to clipboardExpand all lines: src/mcp/tools/simulator/build_run_sim.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -468,7 +468,7 @@ export async function build_run_simLogic(
468
468
}
469
469
470
470
// --- Success ---
471
-
log('info',`✅ ${platformName} simulator build & run succeeded.`);
471
+
log('info',`${platformName} simulator build & run succeeded.`);
472
472
473
473
consttarget=params.simulatorId
474
474
? `simulator UUID '${params.simulatorId}'`
@@ -480,7 +480,7 @@ export async function build_run_simLogic(
480
480
content: [
481
481
{
482
482
type: 'text',
483
-
text: `✅ ${platformName} simulator build and run succeeded for scheme ${params.scheme} from ${sourceType}${sourcePath} targeting ${target}.\n\nThe app (${bundleId}) is now running in the ${platformName} Simulator.\nIf you don't see the simulator window, it may be hidden behind other windows. The Simulator app should be open.`,
483
+
text: `${platformName} simulator build and run succeeded for scheme ${params.scheme} from ${sourceType}${sourcePath} targeting ${target}.\n\nThe app (${bundleId}) is now running in the ${platformName} Simulator.\nIf you don't see the simulator window, it may be hidden behind other windows. The Simulator app should be open.`,
0 commit comments