Skip to content

Commit 3a98d96

Browse files
authored
Merge pull request #6083 from Shopify/07-09-update_copy_from_to_spacing
update copy from/to spacing
2 parents 73d238a + e24c7f1 commit 3a98d96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/store/src/prompts/copy_info.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('renderCopyInfo', () => {
1414

1515
expect(renderInfo).toHaveBeenCalledWith({
1616
headline,
17-
body: [{subdued: 'From:'}, from, {subdued: '\nTo:'}, to],
17+
body: [{subdued: 'From:'}, from, {subdued: '\nTo: '}, to],
1818
})
1919
})
2020
})

packages/store/src/prompts/copy_info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import {renderInfo} from '@shopify/cli-kit/node/ui'
33
export function renderCopyInfo(headline: string, from: string, to: string) {
44
renderInfo({
55
headline,
6-
body: [{subdued: 'From:'}, from, {subdued: '\nTo:'}, to],
6+
body: [{subdued: 'From:'}, from, {subdued: '\nTo: '}, to],
77
})
88
}

0 commit comments

Comments
 (0)