Skip to content

Commit e69bff8

Browse files
committed
update casing on 'operation' during copy operation banner
1 parent d8708e9 commit e69bff8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/store/src/services/store/operations/store-copy.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ describe('StoreCopyOperation', () => {
8787
await operation.execute('source.myshopify.com', 'target.myshopify.com', {})
8888

8989
expect(confirmCopyPrompt).toHaveBeenCalledWith('source.myshopify.com', 'target.myshopify.com')
90-
expect(renderCopyInfo).toHaveBeenCalledWith('Copy Operation', 'source.myshopify.com', 'target.myshopify.com')
90+
expect(renderCopyInfo).toHaveBeenCalledWith('Copy operation', 'source.myshopify.com', 'target.myshopify.com')
9191
expect(renderCopyResult).toHaveBeenCalledWith(
9292
'source.myshopify.com',
9393
'target.myshopify.com',

packages/store/src/services/store/operations/store-copy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class StoreCopyOperation implements StoreOperation {
4040
}
4141
}
4242

43-
renderCopyInfo('Copy Operation', sourceShopDomain, targetShopDomain)
43+
renderCopyInfo('Copy operation', sourceShopDomain, targetShopDomain)
4444

4545
const copyOperation = await this.copyDataWithProgress(
4646
apiShopId,

0 commit comments

Comments
 (0)