Skip to content

Commit 88c22cc

Browse files
authored
Merge pull request #6719 from Shopify/fix-double-elipses
Fixing Double Elipses for Rendered Output
2 parents 8f9a503 + 397733f commit 88c22cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/src/cli/services/bulk-operations/watch-bulk-operation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export type BulkOperation = NonNullable<GetBulkOperationByIdQuery['bulkOperation
2323

2424
export async function shortBulkOperationPoll(adminSession: AdminSession, operationId: string): Promise<BulkOperation> {
2525
return renderSingleTask<BulkOperation>({
26-
title: outputContent`Starting bulk operation...`,
26+
title: outputContent`Starting bulk operation`,
2727
task: async () => {
2828
const startTime = Date.now()
2929
const poller = pollBulkOperation({
@@ -55,7 +55,7 @@ export async function watchBulkOperation(
5555
onAbort: () => void,
5656
): Promise<BulkOperation> {
5757
return renderSingleTask<BulkOperation>({
58-
title: outputContent`Polling bulk operation...`,
58+
title: outputContent`Polling bulk operation`,
5959
task: async (updateStatus) => {
6060
const poller = pollBulkOperation({
6161
adminSession,

0 commit comments

Comments
 (0)