From f46655cfd63b7cd56c08b9a28d54d1710b1c2923 Mon Sep 17 00:00:00 2001 From: Ariel Caplan Date: Sun, 28 Jun 2026 12:51:13 +0300 Subject: [PATCH] Tweak store info action labels for consistent copy Rename the storefront/save action labels to "View your store" and "Save your store" for consistent language across next-step actions, per design feedback. Assisted-By: devx/9e63a702-bf9a-42f3-8cc2-4958c0b8c747 --- .changeset/store-info-data-table.md | 2 +- packages/store/src/cli/services/store/info/result.test.ts | 4 ++-- packages/store/src/cli/services/store/info/result.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.changeset/store-info-data-table.md b/.changeset/store-info-data-table.md index 9670ee18c89..ce39521c1d7 100644 --- a/.changeset/store-info-data-table.md +++ b/.changeset/store-info-data-table.md @@ -2,4 +2,4 @@ '@shopify/store': patch --- -Render `store info` details as a two-column data table and surface store URLs as clickable next-step actions (e.g. "View the storefront."). +Render `store info` details as a two-column data table and surface store URLs as clickable next-step actions (e.g. "View your store"). diff --git a/packages/store/src/cli/services/store/info/result.test.ts b/packages/store/src/cli/services/store/info/result.test.ts index d5679c50a30..f76cadf776f 100644 --- a/packages/store/src/cli/services/store/info/result.test.ts +++ b/packages/store/src/cli/services/store/info/result.test.ts @@ -116,10 +116,10 @@ describe('renderStoreInfoResult', () => { const actions = storeActions() expect(actions).toEqual([ {link: {label: 'Manage this store in the Shopify admin', url: 'https://admin.shopify.com/store/acme-widgets'}}, - {link: {label: 'View the storefront', url: 'https://app.shopify.com/auth/preview-store?token=access-token'}}, + {link: {label: 'View your store', url: 'https://app.shopify.com/auth/preview-store?token=access-token'}}, { link: { - label: 'Save your progress on this store', + label: 'Save your store', url: 'https://admin.shopify.com/store-transfer/accept/claim-token', }, }, diff --git a/packages/store/src/cli/services/store/info/result.ts b/packages/store/src/cli/services/store/info/result.ts index b6f81e24534..a4c009aab41 100644 --- a/packages/store/src/cli/services/store/info/result.ts +++ b/packages/store/src/cli/services/store/info/result.ts @@ -35,8 +35,8 @@ function storeDetailRows(result: StoreInfoResult): InlineToken[][] { function storeActions(result: StoreInfoResult): LinkToken[] { const actions: LinkToken[] = [] pushAction(actions, result.adminUrl, 'Manage this store in the Shopify admin') - pushAction(actions, result.accessUrl, 'View the storefront') - pushAction(actions, result.saveUrl, 'Save your progress on this store') + pushAction(actions, result.accessUrl, 'View your store') + pushAction(actions, result.saveUrl, 'Save your store') return actions }