Skip to content

Commit 397733f

Browse files
committed
fix double elipses
1 parent a170b5a commit 397733f

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)