src/goSurvey: use go.dev/s/ link for the feedback survey

Change-Id: If5c2a8b166041cedef66eb87be19718118929128
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/497536
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: kokoro <noreply+kokoro@google.com>
Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
Run-TryBot: Todd Kulesza <tkulesza@google.com>
diff --git a/src/goSurvey.ts b/src/goSurvey.ts
index 2e9654e..8e99659 100644
--- a/src/goSurvey.ts
+++ b/src/goSurvey.ts
@@ -162,7 +162,7 @@
 				const usersGoplsVersion = await getLocalGoplsVersion(latestConfig);
 				const goV = await getGoVersion();
 				const goVersion = goV ? (goV.isDevel ? 'devel' : goV.format(true)) : 'na';
-				const surveyURL = `https://google.qualtrics.com/jfe/form/SV_agUVNbrDS0Cak2W?usingGopls=${goplsEnabled}&gopls=${usersGoplsVersion?.version}&extid=${extensionId}&go=${goVersion}&os=${process.platform}`;
+				const surveyURL = `https://go.dev/s/ide-hats-survey/?s=c&usingGopls=${goplsEnabled}&gopls=${usersGoplsVersion?.version}&extid=${extensionId}&go=${goVersion}&os=${process.platform}`;
 				await vscode.env.openExternal(vscode.Uri.parse(surveyURL));
 			}
 			break;