()
| 33 | let recentRepoPickItems = getRecentRepoPickItems(); |
| 34 | |
| 35 | const updatePickerItems = () => { |
| 36 | if (manualInputItem.label) { |
| 37 | return (quickPick.items = [...recentRepoPickItems, manualInputItem]); |
| 38 | } |
| 39 | return (quickPick.items = recentRepoPickItems); |
| 40 | }; |
| 41 | |
| 42 | quickPick.placeholder = 'Select to open...'; |
| 43 | updatePickerItems(); |
no outgoing calls
no test coverage detected