We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2365762 + 4243eee commit f070093Copy full SHA for f070093
editors/code/src/client.ts
@@ -148,15 +148,16 @@ export async function createClient(
148
"Don't show this again"
149
);
150
switch (choice) {
151
- case "Yes":
152
- break;
153
case "No":
+ break;
+ case "Yes":
154
await config.update(
155
"linkedProjects",
156
config
157
.get<any[]>("linkedProjects")
158
?.concat(
159
- path.fsPath.substring(folder.length)
+ "." +
160
+ path.fsPath.substring(folder.length)
161
),
162
false
163
0 commit comments