From 626c62fcb75c159c7c1c2fb5111d39ae3fd0ef3b Mon Sep 17 00:00:00 2001 From: Pendo Installation Bot Date: Thu, 5 Mar 2026 22:16:19 -0500 Subject: [PATCH] Install Pendo SDK --- index.html | 9 +++++++++ src/dashboard/index.tsx | 6 ++++++ src/global.d.ts | 1 + 3 files changed, 16 insertions(+) create mode 100644 src/global.d.ts diff --git a/index.html b/index.html index 162ba36..7a73453 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,15 @@ LLM Test Runner +
diff --git a/src/dashboard/index.tsx b/src/dashboard/index.tsx index 01be431..dad65fc 100644 --- a/src/dashboard/index.tsx +++ b/src/dashboard/index.tsx @@ -2,6 +2,12 @@ import React from "react"; import ReactDOM from "react-dom/client"; import { TestDashboard } from "./components/TestDashboard"; +pendo.initialize({ + visitor: { + id: "ANONYMOUS_VISITOR_ID", + }, +}); + ReactDOM.createRoot(document.getElementById("root")!).render( diff --git a/src/global.d.ts b/src/global.d.ts new file mode 100644 index 0000000..873aa01 --- /dev/null +++ b/src/global.d.ts @@ -0,0 +1 @@ +declare var pendo: any;