Skip to content

Commit b793573

Browse files
committed
Formatting
1 parent 31af72a commit b793573

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/init/features/emulators.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export async function emulatorsAskQuestions(setup: Setup, config: Config): Promi
106106
}
107107
}
108108

109-
export async function emulatorsActuate(setup: Setup, config: Config): Promise<void> {
109+
export async function emulatorsActuate(setup: Setup): Promise<void> {
110110
const emulatorsInfo = setup.featureInfo?.emulators;
111111
if (!emulatorsInfo) {
112112
return;
@@ -120,7 +120,7 @@ export async function emulatorsActuate(setup: Setup, config: Config): Promise<vo
120120
const key = emulatorName as keyof EmulatorsConfig;
121121
if (key === "ui") {
122122
emulatorsConfig.ui = { ...emulatorsConfig.ui, ...emulatorsInfo.config.ui };
123-
} else if (emulatorsInfo.config[key]) {
123+
} else if (emulatorsInfo.config[key] && key !== "singleProjectMode") {
124124
emulatorsConfig[key] = { ...emulatorsConfig[key], ...emulatorsInfo.config[key] };
125125
}
126126
}
@@ -141,4 +141,4 @@ export async function emulatorsActuate(setup: Setup, config: Config): Promise<vo
141141
await downloadIfNecessary(Emulators.UI);
142142
}
143143
}
144-
}
144+
}

src/mcp/tools/core/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,4 +261,4 @@ To get started:
261261
`,
262262
);
263263
},
264-
);
264+
);

0 commit comments

Comments
 (0)