aboutsummaryrefslogtreecommitdiff
path: root/apps/web/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/lib')
-rw-r--r--apps/web/lib/analytics.ts3
-rw-r--r--apps/web/lib/tour-constants.ts23
2 files changed, 0 insertions, 26 deletions
diff --git a/apps/web/lib/analytics.ts b/apps/web/lib/analytics.ts
index 28f1d4fe..428ac872 100644
--- a/apps/web/lib/analytics.ts
+++ b/apps/web/lib/analytics.ts
@@ -2,9 +2,6 @@ import posthog from "posthog-js"
export const analytics = {
userSignedOut: () => posthog.capture("user_signed_out"),
- tourStarted: () => posthog.capture("tour_started"),
- tourCompleted: () => posthog.capture("tour_completed"),
- tourSkipped: () => posthog.capture("tour_skipped"),
memoryAdded: (props: {
type: "note" | "link" | "file"
diff --git a/apps/web/lib/tour-constants.ts b/apps/web/lib/tour-constants.ts
deleted file mode 100644
index 9857c878..00000000
--- a/apps/web/lib/tour-constants.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-// Tour step IDs - these should match the IDs added to elements in your app
-export const TOUR_STEP_IDS = {
- LOGO: "tour-logo",
- MENU_BUTTON: "tour-menu-button",
- VIEW_TOGGLE: "tour-view-toggle",
- MEMORY_GRAPH: "tour-memory-graph",
- MEMORY_LIST: "tour-memory-list",
- FLOATING_CHAT: "tour-floating-chat",
- ADD_MEMORY: "tour-add-memory",
- SPACES_DROPDOWN: "tour-spaces-dropdown",
- SETTINGS: "tour-settings",
- MENU_CONNECTIONS: "tour-connections",
- // Menu items
- MENU_ADD_MEMORY: "tour-menu-add-memory",
- MENU_PROJECTS: "tour-menu-projects",
- MENU_MCP: "tour-menu-mcp",
- MENU_BILLING: "tour-menu-billing",
- // Legend
- LEGEND: "tour-legend",
-} as const;
-
-// Tour storage key for localStorage
-export const TOUR_STORAGE_KEY = "supermemory-tour-completed";