From 40fed2a6f414f268e1e4359118ed0c5ae6a87ab7 Mon Sep 17 00:00:00 2001 From: Ole-Morten Duesund Date: Wed, 18 Mar 2026 09:25:14 +0100 Subject: [PATCH] Track each feature as its own Plausible event Send 'click: pause', 'click: skip', etc. instead of a generic 'feature_click' so each feature gets its own Goal in Plausible. Co-Authored-By: Claude Opus 4.6 (1M context) --- public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app.js b/public/app.js index 2a3abb9..59066c4 100644 --- a/public/app.js +++ b/public/app.js @@ -280,7 +280,7 @@ function PayPlay() { }, [flash]); const tryAct = (k, fn) => { - track("feature_click", { feature: k, subscribed: !!has(k) }); + track("click: " + k, { subscribed: !!has(k) }); if (has(k)) { fn(); return; } setModal({ key: k, action: fn }); setModalPhase("choose");