Skip to content

Commit 74523cf

Browse files
committed
style: Fix prettier formatting issues
1 parent fc41113 commit 74523cf

2 files changed

Lines changed: 2 additions & 11 deletions

File tree

src/mcp/tools/project-scaffolding/scaffold_ios_project.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,7 @@ async function processFile(
290290
} else {
291291
// Use standard placeholder replacement
292292
const bundleIdentifier =
293-
bundleIdentifierParam ??
294-
`io.sentry.${projectName.toLowerCase().replace(/[^a-z0-9]/g, '')}`;
293+
bundleIdentifierParam ?? `io.sentry.${projectName.toLowerCase().replace(/[^a-z0-9]/g, '')}`;
295294
processedContent = replacePlaceholders(content, projectName, bundleIdentifier);
296295
}
297296

src/mcp/tools/simulator/__tests__/launch_app_sim.test.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -165,15 +165,7 @@ describe('launch_app_sim tool', () => {
165165

166166
expect(commands).toEqual([
167167
['xcrun', 'simctl', 'get_app_container', 'test-uuid-123', 'io.sentry.testapp', 'app'],
168-
[
169-
'xcrun',
170-
'simctl',
171-
'launch',
172-
'test-uuid-123',
173-
'io.sentry.testapp',
174-
'--debug',
175-
'--verbose',
176-
],
168+
['xcrun', 'simctl', 'launch', 'test-uuid-123', 'io.sentry.testapp', '--debug', '--verbose'],
177169
]);
178170
});
179171

0 commit comments

Comments
 (0)