@@ -265,7 +265,7 @@ export class CopilotRemoteAgentManager extends Disposable {
265
265
return ;
266
266
}
267
267
268
- const { userPrompt, summary, source, followup } = args ;
268
+ const { userPrompt, summary, source } = args ;
269
269
if ( ! userPrompt || userPrompt . trim ( ) . length === 0 ) {
270
270
return ;
271
271
}
@@ -276,14 +276,6 @@ export class CopilotRemoteAgentManager extends Disposable {
276
276
}
277
277
const { repository, owner, repo } = repoInfo ;
278
278
279
- // If this is a followup, parse out the necessary data
280
- // Group 2 is this, url-encoded:
281
- // {"owner":"monalisa","repo":"app","pullRequestNumber":18}
282
- let followUpPR : number | undefined = this . parseFollowup ( followup , repoInfo ) ;
283
- if ( followUpPR ) {
284
- return this . addFollowUpToExistingPR ( followUpPR , userPrompt , summary ) ;
285
- }
286
-
287
279
const repoName = `${ owner } /${ repo } ` ;
288
280
const hasChanges = repository . state . workingTreeChanges . length > 0 || repository . state . indexChanges . length > 0 ;
289
281
const learnMoreCb = async ( ) => {
@@ -347,16 +339,7 @@ export class CopilotRemoteAgentManager extends Disposable {
347
339
}
348
340
349
341
const { webviewUri, link, number } = result ;
350
-
351
- if ( source === 'prompt' ) {
352
- const VIEW = vscode . l10n . t ( 'View' ) ;
353
- const finished = vscode . l10n . t ( 'Coding agent has begun work on your prompt in #{0}' , number ) ;
354
- vscode . window . showInformationMessage ( finished , VIEW ) . then ( ( value ) => {
355
- if ( value === VIEW ) {
356
- vscode . commands . executeCommand ( 'vscode.open' , webviewUri ) ;
357
- }
358
- } ) ;
359
- }
342
+ vscode . commands . executeCommand ( 'vscode.open' , webviewUri ) ;
360
343
361
344
// allow-any-unicode-next-line
362
345
return vscode . l10n . t ( '🚀 Coding agent will continue work in [#{0}]({1}). Track progress [here]({2}).' , number , link , webviewUri . toString ( ) ) ;
0 commit comments