Skip to content

Commit 2c382d7

Browse files
committed
fix(command): pass DefaultDisplayList to pickWorktree in searchAllWorktreeCmd
- Updated the searchAllWorktreeCmd to use DefaultDisplayList.all when calling pickWorktree for improved functionality.
1 parent 3241954 commit 2c382d7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { pickWorktree } from '@/core/quickPick/pickWorktree';
2+
import { DefaultDisplayList } from '@/types';
23

34
export const searchAllWorktreeCmd = () => {
4-
pickWorktree();
5+
pickWorktree(DefaultDisplayList.all);
56
};

0 commit comments

Comments
 (0)