File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ export class SwitchGitCommand extends QuickCommand<State> {
300
300
icon : false ,
301
301
label : state . reference . refType !== 'branch' ,
302
302
} ) } `,
303
- value : state . createBranch ?? getNameWithoutRemote ( state . reference ) ,
303
+ value : state . createBranch ,
304
304
} ) ;
305
305
306
306
this . _canConfirmOverride = undefined ;
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ export class TagGitCommand extends QuickCommand<State> {
260
260
capitalize : true ,
261
261
icon : false ,
262
262
} ) } `,
263
- value : state . name ?? getNameWithoutRemote ( state . reference ) ,
263
+ value : state . name ,
264
264
} ) ;
265
265
if ( result === StepResultBreak ) continue ;
266
266
Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ export class WorktreeGitCommand extends QuickCommand<State> {
453
453
icon : false ,
454
454
label : state . reference . refType !== 'branch' ,
455
455
} ) } `,
456
- value : createBranchOverride ?? getNameWithoutRemote ( state . reference ) ,
456
+ value : createBranchOverride ,
457
457
} ) ;
458
458
if ( result === StepResultBreak ) {
459
459
// Clear the flags, since we can backup after the confirm step below (which is non-standard)
You can’t perform that action at this time.
0 commit comments