Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app/src/cli/models/app/app.test-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,7 @@ export function testDeveloperPlatformClient(stubs: Partial<DeveloperPlatformClie
devSessionDelete: (_input: DevSessionDeleteOptions) => Promise.resolve({devSessionDelete: {userErrors: []}}),
getCreateDevStoreLink: (org: Organization) =>
Promise.resolve(
`Looks like you don't have any dev stores associated with ${org.businessName}'s Partner Dashboard. Create one now https://partners.shopify.com/1234/stores`,
`Looks like you don't have any dev stores associated with ${org.businessName}'s Partner Dashboard. Create a store in Partner Dashboard https://partners.shopify.com/1234/stores`,
),
...stubs,
}
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/cli/services/dev/select-store.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ describe('selectStore', async () => {
clientName: ClientName.AppManagement,
getCreateDevStoreLink: (org: Organization) =>
Promise.resolve(
`Looks like you don't have any dev stores associated with ${org.businessName}'s Dev Dashboard. Create one now https://dev.shopify.com/dashboard/1234/stores`,
`Looks like you don't have any dev stores associated with ${org.businessName}'s Dev Dashboard. Create a store in Dev Dashboard https://dev.shopify.com/dashboard/1234/stores`,
),
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,7 @@ export class AppManagementClient implements DeveloperPlatformClient {
const url = `https://${await developerDashboardFqdn()}/dashboard/${org.id}/stores`
return [
`Looks like you don't have any dev stores associated with ${org.businessName}'s Dev Dashboard.`,
{link: {url, label: 'Create one now'}},
{link: {url, label: 'Create a store in Dev Dashboard'}},
]
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ export class PartnersClient implements DeveloperPlatformClient {
const url = `https://${await partnersFqdn()}/${org.id}/stores`
return [
`Looks like you don't have any dev stores associated with ${org.businessName}'s Partner Dashboard.`,
{link: {url, label: 'Create one now'}},
{link: {url, label: 'Create a store in Partner Dashboard'}},
]
}

Expand Down
Loading