Skip to content

Commit 057f9a9

Browse files
committed
fix: remove extra spacing in dev store link message
- Removed newline character between message and link - Link now appears on the same line as the message - Fixes spacing issue identified in PR review
1 parent bd06d7f commit 057f9a9

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/app/src/cli/utilities/developer-platform-client/app-management-client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,6 @@ export class AppManagementClient implements DeveloperPlatformClient {
10501050
const url = `https://${await developerDashboardFqdn()}/dashboard/${org.id}/stores`
10511051
return [
10521052
`Looks like you don't have any dev stores associated with ${org.businessName}'s Dev Dashboard.`,
1053-
'\n',
10541053
{link: {url, label: 'Create one now'}},
10551054
]
10561055
}

packages/app/src/cli/utilities/developer-platform-client/partners-client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,6 @@ export class PartnersClient implements DeveloperPlatformClient {
650650
const url = `https://${await partnersFqdn()}/${org.id}/stores`
651651
return [
652652
`Looks like you don't have any dev stores associated with ${org.businessName}'s Partner Dashboard.`,
653-
'\n',
654653
{link: {url, label: 'Create one now'}},
655654
]
656655
}

0 commit comments

Comments
 (0)