diff --git a/packages/typescriptlang-org/src/templates/scripts/setupLikeDislikeButtons.ts b/packages/typescriptlang-org/src/templates/scripts/setupLikeDislikeButtons.ts
index d0677590d3f0..1c17f4cbf070 100644
--- a/packages/typescriptlang-org/src/templates/scripts/setupLikeDislikeButtons.ts
+++ b/packages/typescriptlang-org/src/templates/scripts/setupLikeDislikeButtons.ts
@@ -4,14 +4,6 @@ export const setupLikeDislikeButtons = (slug: string, i: any) => {
if (!likeButton || !dislikeButton) return
const clicked = (eventName: string) => () => {
- // @ts-ignore
- window.appInsights &&
- // @ts-ignore
- window.appInsights.trackEvent({
- name: eventName,
- properties: { slug: slug, ab: "b" },
- })
-
const newContent: string = i("handb_thanks")
const textSectionNav = document.getElementById("like-dislike-subnav")!