Skip to content

feat(agent-platform): approval detail panel with embedded session#63908

Closed
benjackwhite wants to merge 1 commit into
assfrom
posthog-code/approvals-detail-view
Closed

feat(agent-platform): approval detail panel with embedded session#63908
benjackwhite wants to merge 1 commit into
assfrom
posthog-code/approvals-detail-view

Conversation

@benjackwhite

Copy link
Copy Markdown
Contributor

Problem

The agent-console approvals UI surfaced each approval-gated tool call in a slide-out drawer. The drawer overlaid the list, had no URL-addressable state, and showed the approval in isolation — an approver couldn't see the conversation that led the agent to propose the gated call, which is exactly the context needed to make a good decision.

Changes

Replaces the drawer with a proper master-detail panel, mirroring how the sessions tab already works:

  • ApprovalDetail is now an embeddable panel (no drawer chrome) with two tabs:
    • Approval — model reasoning, proposed args, and the decision controls (approve / reject, approve-with-edits, reason). The panel now stays open after a decision so the approver watches the dispatched/rejected outcome land via polling, instead of the drawer closing immediately.
    • Session — renders the agent runtime session that proposed the call by reusing the existing SessionDetail (conversation + logs), hydrated from the approval's session_id.
  • Selection is driven by a ?request=<id> URL param (bookmarkable) on both the fleet (/approvals) and per-agent (/agents/<slug>/approvals) surfaces. Nothing selected → centered list; selecting a row → list + detail grid.
  • Adds approval fixtures, MSW handlers, and Storybook stories (ApprovalsList, ApprovalDetail, Approvals) covering every state — queued/editable, queued/read-only, dispatched, rejected, dispatch-failed — each linked to a real session fixture so the Session tab renders a conversation. This is the intended review surface.

No backend changes — purely the Next.js agent-console app plus shared fixtures.

How did you test this code?

I'm an agent (Claude Code). I ran only automated checks — no manual browser testing:

  • tsc --noEmit clean for @posthog/agent-console and @posthog/agent-chat (including a .storybook-inclusive pass for the mocks)
  • oxlint clean (only pre-existing warnings in an unrelated file)
  • oxfmt applied to all changed files
  • build-storybook completes successfully — all stories, mocks, and imports bundle

To eyeball: pnpm --filter @posthog/agent-console storybook → "Agent console components / Pages / Approval Detail" and ".../Approvals".

Automatic notifications

  • Publish to changelog?
  • Alert Sales and Marketing teams?

Docs update

No docs update needed.

🤖 Agent context

Autonomy: Human-driven (agent-assisted)

Authored by Claude Code (Opus 4.8) at Ben White's direction. The ask was to extend the approvals flow by removing the "rough" popup in favour of a detail view that can render the relevant session for context.

Two approval systems share the name in the repo; confirmed with the requester this targets the agent-console system (where approvals carry a session_id) and the chosen layout is a master-detail panel (not a separate route), to match the existing sessions tab.

Key decisions:

  • Reused SessionDetail wholesale for the Session tab rather than duplicating its composition. This nests its Conversation/Logs tabs under the outer Approval/Session tabs — flagged for reviewer judgement vs. flattening to a single Approval | Conversation | Logs bar.
  • Kept getApproval as the authoritative per-detail fetch (polling) rather than threading the list row through, and chained the session/logs fetch off the loaded approval's session_id.
  • The Storybook decide POST mock returns success without mutating the read-only store; decided outcomes are shown via dedicated state fixtures.

Replace the agent-console approval drawer with a URL-addressable master-detail panel. The detail view shows the approval context (model reasoning, proposed args, decision controls) in an Approval tab and renders the agent session that proposed the gated call in a Session tab, reusing the existing SessionDetail component.

Selection is driven by a ?request=<id> URL param (bookmarkable, mirrors the sessions tab) on both the fleet and per-agent surfaces. Adds approval fixtures, MSW handlers, and Storybook stories so every approval state is reviewable without a backend.

Generated-By: PostHog Code
Task-Id: 9a4a4069-25cb-4816-b1d0-a018556f7fee
@github-actions

Copy link
Copy Markdown
Contributor

Hey @benjackwhite! 👋

It looks like your git author email on this PR isn't your @posthog.com address (ben@benjackwhite.co.uk). Since you're on the PostHog team, it's worth pointing your local git author email at your @posthog.com address. Why it matters:

  • Consistent work identity in git history — internal tooling that attributes commits to team members keys off your @posthog.com address.
  • Keeps team contributions easy to tell apart from external community ones when scanning history.

You can fix it for this repo with:

git config user.email "you@posthog.com"

Or set it globally with git config --global user.email "you@posthog.com". No need to redo this PR — just a nudge for next time. 🙂

@greptile-apps

greptile-apps Bot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor

Comments Outside Diff (3)

  1. products/agent_platform/services/agent-console/src/components/ApprovalDetail.tsx, line 876-902 (link)

    P2 Duplicated close-button markup (OnceAndOnlyOnce)

    The tooltip + button block inside PanelShell (lines 883–897) is reproduced character-for-character in Loaded's header (lines 1003–1017). Both are the same close button with the same aria-label, class string, icon, and tooltip text. If the styling or label ever changes, only one copy tends to get updated. Consider extracting a single CloseButton component and using it in both places.

    Prompt To Fix With AI
    This is a comment left during a code review.
    Path: products/agent_platform/services/agent-console/src/components/ApprovalDetail.tsx
    Line: 876-902
    
    Comment:
    **Duplicated close-button markup (OnceAndOnlyOnce)**
    
    The tooltip + button block inside `PanelShell` (lines 883–897) is reproduced character-for-character in `Loaded`'s header (lines 1003–1017). Both are the same close button with the same `aria-label`, class string, icon, and tooltip text. If the styling or label ever changes, only one copy tends to get updated. Consider extracting a single `CloseButton` component and using it in both places.
    
    How can I resolve this? If you propose a fix, please make it concise.

    Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

  2. products/agent_platform/services/agent-console/src/screens/Approvals.tsx, line 51-55 (link)

    P2 Blank detail pane during initial list load on deep-link

    When the page is opened via /approvals?request=<id>, selectedId is non-null but approvals is still empty on the first render. Because selected is derived by scanning the list (approvals.find(…)), it is null while the list is in flight, so selectedAgent is also null. ApprovalDetail returns null when agent is null, leaving the right pane completely empty until the list fetch completes.

    The per-agent route avoids this because the agent is known upfront from context; only the fleet route is affected. If the list load takes a moment, an approver who clicked a notification link sees a blank panel before the approval detail appears.

    Prompt To Fix With AI
    This is a comment left during a code review.
    Path: products/agent_platform/services/agent-console/src/screens/Approvals.tsx
    Line: 51-55
    
    Comment:
    **Blank detail pane during initial list load on deep-link**
    
    When the page is opened via `/approvals?request=<id>`, `selectedId` is non-null but `approvals` is still empty on the first render. Because `selected` is derived by scanning the list (`approvals.find(…)`), it is `null` while the list is in flight, so `selectedAgent` is also `null`. `ApprovalDetail` returns `null` when `agent` is `null`, leaving the right pane completely empty until the list fetch completes.
    
    The per-agent route avoids this because the agent is known upfront from context; only the fleet route is affected. If the list load takes a moment, an approver who clicked a notification link sees a blank panel before the approval detail appears.
    
    How can I resolve this? If you propose a fix, please make it concise.
  3. products/agent_platform/services/agent-console/app/agents/[slug]/approvals/approvals-client.tsx, line 352-364 (link)

    P2 Duplicated URL-param management (OnceAndOnlyOnce)

    The select callback here (and the nearly identical one in app/approvals/approvals-client.tsx) both read searchParams, clone them into a URLSearchParams, set or delete the request key, and push the result. The only difference is the path prefix. A shared useSelectParam(basePath) hook would remove this duplication and make the pattern easier to change in one place.

    Prompt To Fix With AI
    This is a comment left during a code review.
    Path: products/agent_platform/services/agent-console/app/agents/[slug]/approvals/approvals-client.tsx
    Line: 352-364
    
    Comment:
    **Duplicated URL-param management (OnceAndOnlyOnce)**
    
    The `select` callback here (and the nearly identical one in `app/approvals/approvals-client.tsx`) both read `searchParams`, clone them into a `URLSearchParams`, set or delete the `request` key, and push the result. The only difference is the path prefix. A shared `useSelectParam(basePath)` hook would remove this duplication and make the pattern easier to change in one place.
    
    How can I resolve this? If you propose a fix, please make it concise.

    Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Prompt To Fix All With AI
Fix the following 3 code review issues. Work through them one at a time, proposing concise fixes.

---

### Issue 1 of 3
products/agent_platform/services/agent-console/src/components/ApprovalDetail.tsx:876-902
**Duplicated close-button markup (OnceAndOnlyOnce)**

The tooltip + button block inside `PanelShell` (lines 883–897) is reproduced character-for-character in `Loaded`'s header (lines 1003–1017). Both are the same close button with the same `aria-label`, class string, icon, and tooltip text. If the styling or label ever changes, only one copy tends to get updated. Consider extracting a single `CloseButton` component and using it in both places.

### Issue 2 of 3
products/agent_platform/services/agent-console/src/screens/Approvals.tsx:51-55
**Blank detail pane during initial list load on deep-link**

When the page is opened via `/approvals?request=<id>`, `selectedId` is non-null but `approvals` is still empty on the first render. Because `selected` is derived by scanning the list (`approvals.find(…)`), it is `null` while the list is in flight, so `selectedAgent` is also `null`. `ApprovalDetail` returns `null` when `agent` is `null`, leaving the right pane completely empty until the list fetch completes.

The per-agent route avoids this because the agent is known upfront from context; only the fleet route is affected. If the list load takes a moment, an approver who clicked a notification link sees a blank panel before the approval detail appears.

### Issue 3 of 3
products/agent_platform/services/agent-console/app/agents/[slug]/approvals/approvals-client.tsx:352-364
**Duplicated URL-param management (OnceAndOnlyOnce)**

The `select` callback here (and the nearly identical one in `app/approvals/approvals-client.tsx`) both read `searchParams`, clone them into a `URLSearchParams`, set or delete the `request` key, and push the result. The only difference is the path prefix. A shared `useSelectParam(basePath)` hook would remove this duplication and make the pattern easier to change in one place.

Reviews (1): Last reviewed commit: "feat(agent-platform): approval detail pa..." | Re-trigger Greptile

@github-actions

github-actions Bot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor

Size Change: 0 B

Total Size: 62.8 MB

ℹ️ View Unchanged
Filename Size
frontend/dist-report/decompression-worker/src/scenes/session-recordings/player/snapshot-processing/decompressionWorker 2.85 kB
frontend/dist-report/exporter/_chunks/chunk 2.62 MB
frontend/dist-report/exporter/_parent/products/actions/frontend/pages/Action 28 kB
frontend/dist-report/exporter/_parent/products/actions/frontend/pages/Actions 5.69 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/AIObservabilityScene 121 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/AIObservabilitySessionScene 21.3 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/AIObservabilityTraceScene 130 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/AIObservabilityUsers 3.62 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/clusters/AIObservabilityClusterScene 21.9 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/clusters/AIObservabilityClustersScene 54.6 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/datasets/AIObservabilityDatasetScene 20.9 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/datasets/AIObservabilityDatasetsScene 4.2 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/evaluations/AIObservabilityEvaluation 60 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/evaluations/AIObservabilityEvaluationsScene 32.2 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/evaluations/EvaluationTemplates 671 B
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/LLMASessionFeedbackDisplay 4.81 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/playground/AIObservabilityPlaygroundScene 38 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/prompts/LLMPromptScene 33.5 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/prompts/LLMPromptsScene 5.39 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/tags/AIObservabilityTag 32 kB
frontend/dist-report/exporter/_parent/products/ai_observability/frontend/tags/AIObservabilityTagsScene 11.8 kB
frontend/dist-report/exporter/_parent/products/business_knowledge/frontend/scenes/BusinessKnowledgeScene 22.5 kB
frontend/dist-report/exporter/_parent/products/conversations/frontend/components/Assignee/CyclotronJobInputAssignee 1.38 kB
frontend/dist-report/exporter/_parent/products/conversations/frontend/components/SlaBusinessHours/CyclotronJobInputBusinessHours 2.69 kB
frontend/dist-report/exporter/_parent/products/conversations/frontend/components/TicketTags/CyclotronJobInputTicketTags 783 B
frontend/dist-report/exporter/_parent/products/conversations/frontend/scenes/settings/SupportSettingsScene 5.69 kB
frontend/dist-report/exporter/_parent/products/conversations/frontend/scenes/ticket/SupportTicketScene 39.1 kB
frontend/dist-report/exporter/_parent/products/conversations/frontend/scenes/tickets/SupportTicketsScene 2.02 kB
frontend/dist-report/exporter/_parent/products/customer_analytics/frontend/CustomerAnalyticsScene 86.3 kB
frontend/dist-report/exporter/_parent/products/customer_analytics/frontend/scenes/CustomerAnalyticsConfigurationScene/CustomerAnalyticsConfigurationScene 6.45 kB
frontend/dist-report/exporter/_parent/products/customer_analytics/frontend/scenes/CustomerJourneyBuilderScene/CustomerJourneyBuilderScene 6.37 kB
frontend/dist-report/exporter/_parent/products/customer_analytics/frontend/scenes/CustomerJourneyTemplatesScene/CustomerJourneyTemplatesScene 9.26 kB
frontend/dist-report/exporter/_parent/products/data_warehouse/DataWarehouseScene 50.1 kB
frontend/dist-report/exporter/_parent/products/data_warehouse/frontend/scenes/NewSourceScene/NewSourceScene 2.88 kB
frontend/dist-report/exporter/_parent/products/data_warehouse/frontend/scenes/SchemaScene/SchemaScene 27.1 kB
frontend/dist-report/exporter/_parent/products/data_warehouse/frontend/scenes/SourceConnectScene/SourceConnectScene 6.96 kB
frontend/dist-report/exporter/_parent/products/data_warehouse/frontend/scenes/SourceScene/SourceScene 2.65 kB
frontend/dist-report/exporter/_parent/products/data_warehouse/frontend/scenes/SourcesScene/SourcesScene 7.56 kB
frontend/dist-report/exporter/_parent/products/early_access_features/frontend/EarlyAccessFeature 5.54 kB
frontend/dist-report/exporter/_parent/products/early_access_features/frontend/EarlyAccessFeatures 3.83 kB
frontend/dist-report/exporter/_parent/products/endpoints/frontend/EndpointScene 47.5 kB
frontend/dist-report/exporter/_parent/products/endpoints/frontend/EndpointsScene 27.5 kB
frontend/dist-report/exporter/_parent/products/engineering_analytics/frontend/scenes/EngineeringAnalyticsScene 19.6 kB
frontend/dist-report/exporter/_parent/products/engineering_analytics/frontend/scenes/PullRequestDetailScene 11.4 kB
frontend/dist-report/exporter/_parent/products/error_tracking/frontend/scenes/ErrorTrackingFingerprintsScene/ErrorTrackingIssueFingerprintsScene 7.76 kB
frontend/dist-report/exporter/_parent/products/error_tracking/frontend/scenes/ErrorTrackingIssueScene/ErrorTrackingIssueScene 102 kB
frontend/dist-report/exporter/_parent/products/error_tracking/frontend/scenes/ErrorTrackingScene/ErrorTrackingScene 42.4 kB
frontend/dist-report/exporter/_parent/products/feature_flags/frontend/FeatureFlagTemplatesScene 6.91 kB
frontend/dist-report/exporter/_parent/products/games/368Hedgehogs/368Hedgehogs 5.24 kB
frontend/dist-report/exporter/_parent/products/games/FlappyHog/FlappyHog 5.7 kB
frontend/dist-report/exporter/_parent/products/legal_documents/frontend/scenes/LegalDocumentNewScene 60.6 kB
frontend/dist-report/exporter/_parent/products/legal_documents/frontend/scenes/LegalDocumentsScene 6.78 kB
frontend/dist-report/exporter/_parent/products/links/frontend/LinkScene 25.5 kB
frontend/dist-report/exporter/_parent/products/links/frontend/LinksScene 5.25 kB
frontend/dist-report/exporter/_parent/products/live_debugger/frontend/LiveDebugger 19.7 kB
frontend/dist-report/exporter/_parent/products/logs/frontend/LogsScene 22.9 kB
frontend/dist-report/exporter/_parent/products/logs/frontend/scenes/LogsAlertDetailScene/LogsAlertDetailScene 19 kB
frontend/dist-report/exporter/_parent/products/logs/frontend/scenes/LogsAlertNotificationDetailScene/LogsAlertNotificationDetailScene 9.1 kB
frontend/dist-report/exporter/_parent/products/logs/frontend/scenes/LogsSamplingDetailScene/LogsSamplingDetailScene 6.25 kB
frontend/dist-report/exporter/_parent/products/logs/frontend/scenes/LogsSamplingNewScene/LogsSamplingNewScene 3.26 kB
frontend/dist-report/exporter/_parent/products/managed_migrations/frontend/ManagedMigration 15.4 kB
frontend/dist-report/exporter/_parent/products/mcp_analytics/frontend/MCPAnalyticsScene 106 kB
frontend/dist-report/exporter/_parent/products/mcp_analytics/frontend/MCPAnalyticsToolDetail 20.8 kB
frontend/dist-report/exporter/_parent/products/metrics/frontend/MetricsScene 18.3 kB
frontend/dist-report/exporter/_parent/products/product_analytics/frontend/insights/stickiness/StickinessBarChart/StickinessBarChart 4.37 kB
frontend/dist-report/exporter/_parent/products/product_analytics/frontend/insights/stickiness/StickinessLineChart/StickinessLineChart 4.25 kB
frontend/dist-report/exporter/_parent/products/product_analytics/frontend/insights/trends/TrendsBarChart/TrendsBarChart 10.1 kB
frontend/dist-report/exporter/_parent/products/product_analytics/frontend/insights/trends/TrendsLifecycleChart/TrendsLifecycleChart 6.21 kB
frontend/dist-report/exporter/_parent/products/product_analytics/frontend/insights/trends/TrendsLineChart/TrendsLineChart 5.92 kB
frontend/dist-report/exporter/_parent/products/product_analytics/frontend/insights/trends/TrendsPieChart/TrendsPieChart 5.47 kB
frontend/dist-report/exporter/_parent/products/replay_vision/frontend/observations/ReplayObservation 18 kB
frontend/dist-report/exporter/_parent/products/replay_vision/frontend/replay_scanners/ReplayScanner 35.7 kB
frontend/dist-report/exporter/_parent/products/replay_vision/frontend/replay_scanners/ReplayScannersScene 22.1 kB
frontend/dist-report/exporter/_parent/products/replay_vision/frontend/replay_scanners/ScannerEditorScene 25.2 kB
frontend/dist-report/exporter/_parent/products/revenue_analytics/frontend/revenueAnalyticsLogic 1.62 kB
frontend/dist-report/exporter/_parent/products/revenue_analytics/frontend/RevenueAnalyticsScene 29.8 kB
frontend/dist-report/exporter/_parent/products/session_summaries/frontend/SessionGroupSummariesTable 5.54 kB
frontend/dist-report/exporter/_parent/products/session_summaries/frontend/SessionGroupSummaryScene 23.3 kB
frontend/dist-report/exporter/_parent/products/skills/frontend/LLMSkillScene 1.64 kB
frontend/dist-report/exporter/_parent/products/skills/frontend/LLMSkillsScene 1.65 kB
frontend/dist-report/exporter/_parent/products/tasks/frontend/SlackTaskContextScene 9.4 kB
frontend/dist-report/exporter/_parent/products/tasks/frontend/TaskDetailScene 25.2 kB
frontend/dist-report/exporter/_parent/products/tasks/frontend/TaskTracker 14.9 kB
frontend/dist-report/exporter/_parent/products/tracing/frontend/TracingScene 82.6 kB
frontend/dist-report/exporter/_parent/products/user_interviews/frontend/UserInterview 10.9 kB
frontend/dist-report/exporter/_parent/products/user_interviews/frontend/UserInterviewResponse 8.43 kB
frontend/dist-report/exporter/_parent/products/user_interviews/frontend/UserInterviews 6.56 kB
frontend/dist-report/exporter/_parent/products/visual_review/frontend/scenes/VisualReviewIndexScene 3.11 kB
frontend/dist-report/exporter/_parent/products/visual_review/frontend/scenes/VisualReviewRunScene 46.8 kB
frontend/dist-report/exporter/_parent/products/visual_review/frontend/scenes/VisualReviewRunsScene 7.76 kB
frontend/dist-report/exporter/_parent/products/visual_review/frontend/scenes/VisualReviewSettingsScene 11.7 kB
frontend/dist-report/exporter/_parent/products/visual_review/frontend/scenes/VisualReviewSnapshotHistoryScene 14.3 kB
frontend/dist-report/exporter/_parent/products/visual_review/frontend/scenes/VisualReviewSnapshotOverviewScene 19.9 kB
frontend/dist-report/exporter/_parent/products/workflows/frontend/TemplateLibrary/MessageTemplate 17.1 kB
frontend/dist-report/exporter/_parent/products/workflows/frontend/Workflows/WorkflowScene 110 kB
frontend/dist-report/exporter/_parent/products/workflows/frontend/WorkflowsScene 61.6 kB
frontend/dist-report/exporter/src/exporter/exporter 43 kB
frontend/dist-report/exporter/src/exporter/scenes/ExporterDashboardScene 6.6 kB
frontend/dist-report/exporter/src/exporter/scenes/ExporterHeatmapScene 20.5 kB
frontend/dist-report/exporter/src/exporter/scenes/ExporterInsightScene 7.25 kB
frontend/dist-report/exporter/src/exporter/scenes/ExporterInterviewScene 310 kB
frontend/dist-report/exporter/src/exporter/scenes/ExporterNotebookScene 2.88 MB
frontend/dist-report/exporter/src/exporter/scenes/ExporterRecordingScene 5.59 kB
frontend/dist-report/exporter/src/exporterSharedChunkAnchors 1.3 kB
frontend/dist-report/exporter/src/lib/components/ActivityLog/describers 128 kB
frontend/dist-report/exporter/src/lib/components/Cards/TextCard/TextCardMarkdownEditor 10.6 kB
frontend/dist-report/exporter/src/lib/components/MonacoDiffEditor 533 B
frontend/dist-report/exporter/src/lib/lemon-ui/LemonMarkdown/MermaidDiagram 2 kB
frontend/dist-report/exporter/src/lib/lemon-ui/LemonTextArea/LemonTextAreaMarkdown 790 B
frontend/dist-report/exporter/src/lib/lemon-ui/Link/Link 415 B
frontend/dist-report/exporter/src/lib/monaco/CodeEditor 448 B
frontend/dist-report/exporter/src/lib/monaco/CodeEditorImpl 26 kB
frontend/dist-report/exporter/src/lib/monaco/CodeEditorInline 649 B
frontend/dist-report/exporter/src/lib/monaco/vimMode 211 kB
frontend/dist-report/exporter/src/lib/ui/Button/ButtonPrimitives 479 B
frontend/dist-report/exporter/src/queries/nodes/WebVitals/WebVitals 11.5 kB
frontend/dist-report/exporter/src/queries/nodes/WebVitals/WebVitalsPathBreakdown 4.84 kB
frontend/dist-report/exporter/src/queries/Query/Query 5.12 kB
frontend/dist-report/exporter/src/queries/schema 910 kB
frontend/dist-report/exporter/src/scenes/approvals/changeRequestsLogic 622 B
frontend/dist-report/exporter/src/scenes/authentication/shared/passkeyLogic 602 B
frontend/dist-report/exporter/src/scenes/data-pipelines/event-filtering/EventFilterScene 22.8 kB
frontend/dist-report/exporter/src/scenes/data-pipelines/TransformationsScene 8.08 kB
frontend/dist-report/exporter/src/scenes/hog-functions/misc/Diff 1.35 kB
frontend/dist-report/exporter/src/scenes/insights/views/BoxPlot/BoxPlot 6.53 kB
frontend/dist-report/exporter/src/scenes/insights/views/CalendarHeatMap/CalendarHeatMap 8.92 kB
frontend/dist-report/exporter/src/scenes/insights/views/RegionMap/RegionMap 30.7 kB
frontend/dist-report/exporter/src/scenes/insights/views/WorldMap/WorldMap 1.04 MB
frontend/dist-report/exporter/src/scenes/models/ModelsScene 19.2 kB
frontend/dist-report/exporter/src/scenes/models/NodeDetailScene 19.2 kB
frontend/dist-report/monaco-editor-worker/src/lib/monaco/workers/monacoEditorWorker 288 kB
frontend/dist-report/monaco-json-worker/src/lib/monaco/workers/monacoJsonWorker 419 kB
frontend/dist-report/monaco-typescript-worker/src/lib/monaco/workers/monacoTsWorker 7.02 MB
frontend/dist-report/posthog-app/_chunks/chunk 2.59 MB
frontend/dist-report/posthog-app/_parent/products/actions/frontend/pages/Action 29.5 kB
frontend/dist-report/posthog-app/_parent/products/actions/frontend/pages/Actions 7.16 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/AIObservabilityScene 123 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/AIObservabilitySessionScene 21.4 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/AIObservabilityTraceScene 131 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/AIObservabilityUsers 4.53 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/clusters/AIObservabilityClusterScene 22.4 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/clusters/AIObservabilityClustersScene 55.1 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/datasets/AIObservabilityDatasetScene 21.4 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/datasets/AIObservabilityDatasetsScene 4.71 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/evaluations/AIObservabilityEvaluation 60.5 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/evaluations/AIObservabilityEvaluationsScene 33.6 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/evaluations/EvaluationTemplates 671 B
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/LLMASessionFeedbackDisplay 4.82 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/playground/AIObservabilityPlaygroundScene 38.5 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/prompts/LLMPromptScene 34.3 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/prompts/LLMPromptsScene 5.9 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/tags/AIObservabilityTag 33.4 kB
frontend/dist-report/posthog-app/_parent/products/ai_observability/frontend/tags/AIObservabilityTagsScene 13.2 kB
frontend/dist-report/posthog-app/_parent/products/business_knowledge/frontend/scenes/BusinessKnowledgeScene 23 kB
frontend/dist-report/posthog-app/_parent/products/conversations/frontend/components/Assignee/CyclotronJobInputAssignee 1.38 kB
frontend/dist-report/posthog-app/_parent/products/conversations/frontend/components/SlaBusinessHours/CyclotronJobInputBusinessHours 2.7 kB
frontend/dist-report/posthog-app/_parent/products/conversations/frontend/components/TicketTags/CyclotronJobInputTicketTags 783 B
frontend/dist-report/posthog-app/_parent/products/conversations/frontend/scenes/settings/SupportSettingsScene 7.8 kB
frontend/dist-report/posthog-app/_parent/products/conversations/frontend/scenes/ticket/SupportTicketScene 33.9 kB
frontend/dist-report/posthog-app/_parent/products/conversations/frontend/scenes/tickets/SupportTicketsScene 2.6 kB
frontend/dist-report/posthog-app/_parent/products/customer_analytics/frontend/CustomerAnalyticsScene 86.7 kB
frontend/dist-report/posthog-app/_parent/products/customer_analytics/frontend/scenes/CustomerAnalyticsConfigurationScene/CustomerAnalyticsConfigurationScene 8.55 kB
frontend/dist-report/posthog-app/_parent/products/customer_analytics/frontend/scenes/CustomerJourneyBuilderScene/CustomerJourneyBuilderScene 7.79 kB
frontend/dist-report/posthog-app/_parent/products/customer_analytics/frontend/scenes/CustomerJourneyTemplatesScene/CustomerJourneyTemplatesScene 10.2 kB
frontend/dist-report/posthog-app/_parent/products/data_warehouse/DataWarehouseScene 8.02 kB
frontend/dist-report/posthog-app/_parent/products/data_warehouse/frontend/scenes/NewSourceScene/NewSourceScene 3.63 kB
frontend/dist-report/posthog-app/_parent/products/data_warehouse/frontend/scenes/SchemaScene/SchemaScene 27.7 kB
frontend/dist-report/posthog-app/_parent/products/data_warehouse/frontend/scenes/SourceConnectScene/SourceConnectScene 7.64 kB
frontend/dist-report/posthog-app/_parent/products/data_warehouse/frontend/scenes/SourceScene/SourceScene 3.3 kB
frontend/dist-report/posthog-app/_parent/products/data_warehouse/frontend/scenes/SourcesScene/SourcesScene 8.24 kB
frontend/dist-report/posthog-app/_parent/products/early_access_features/frontend/EarlyAccessFeature 7.17 kB
frontend/dist-report/posthog-app/_parent/products/early_access_features/frontend/EarlyAccessFeatures 4.34 kB
frontend/dist-report/posthog-app/_parent/products/endpoints/frontend/EndpointScene 49 kB
frontend/dist-report/posthog-app/_parent/products/endpoints/frontend/EndpointsScene 26.9 kB
frontend/dist-report/posthog-app/_parent/products/engineering_analytics/frontend/scenes/EngineeringAnalyticsScene 20.1 kB
frontend/dist-report/posthog-app/_parent/products/engineering_analytics/frontend/scenes/PullRequestDetailScene 12 kB
frontend/dist-report/posthog-app/_parent/products/error_tracking/frontend/scenes/ErrorTrackingFingerprintsScene/ErrorTrackingIssueFingerprintsScene 8.3 kB
frontend/dist-report/posthog-app/_parent/products/error_tracking/frontend/scenes/ErrorTrackingIssueScene/ErrorTrackingIssueScene 103 kB
frontend/dist-report/posthog-app/_parent/products/error_tracking/frontend/scenes/ErrorTrackingScene/ErrorTrackingScene 44.9 kB
frontend/dist-report/posthog-app/_parent/products/feature_flags/frontend/FeatureFlagTemplatesScene 6.91 kB
frontend/dist-report/posthog-app/_parent/products/games/368Hedgehogs/368Hedgehogs 5.24 kB
frontend/dist-report/posthog-app/_parent/products/games/FlappyHog/FlappyHog 5.7 kB
frontend/dist-report/posthog-app/_parent/products/legal_documents/frontend/scenes/LegalDocumentNewScene 61.1 kB
frontend/dist-report/posthog-app/_parent/products/legal_documents/frontend/scenes/LegalDocumentsScene 7.29 kB
frontend/dist-report/posthog-app/_parent/products/links/frontend/LinkScene 26 kB
frontend/dist-report/posthog-app/_parent/products/links/frontend/LinksScene 5.76 kB
frontend/dist-report/posthog-app/_parent/products/live_debugger/frontend/LiveDebugger 20.2 kB
frontend/dist-report/posthog-app/_parent/products/logs/frontend/components/LogsViewer/LogsViewerModal/LogsViewerModal 2.92 kB
frontend/dist-report/posthog-app/_parent/products/logs/frontend/LogsScene 24.3 kB
frontend/dist-report/posthog-app/_parent/products/logs/frontend/scenes/LogsAlertDetailScene/LogsAlertDetailScene 19.6 kB
frontend/dist-report/posthog-app/_parent/products/logs/frontend/scenes/LogsAlertNotificationDetailScene/LogsAlertNotificationDetailScene 9.64 kB
frontend/dist-report/posthog-app/_parent/products/logs/frontend/scenes/LogsSamplingDetailScene/LogsSamplingDetailScene 6.76 kB
frontend/dist-report/posthog-app/_parent/products/logs/frontend/scenes/LogsSamplingNewScene/LogsSamplingNewScene 3.77 kB
frontend/dist-report/posthog-app/_parent/products/managed_migrations/frontend/ManagedMigration 15.9 kB
frontend/dist-report/posthog-app/_parent/products/mcp_analytics/frontend/MCPAnalyticsScene 107 kB
frontend/dist-report/posthog-app/_parent/products/mcp_analytics/frontend/MCPAnalyticsToolDetail 21.3 kB
frontend/dist-report/posthog-app/_parent/products/metrics/frontend/MetricsScene 19.2 kB
frontend/dist-report/posthog-app/_parent/products/product_analytics/frontend/insights/stickiness/StickinessBarChart/StickinessBarChart 4.88 kB
frontend/dist-report/posthog-app/_parent/products/product_analytics/frontend/insights/stickiness/StickinessLineChart/StickinessLineChart 4.76 kB
frontend/dist-report/posthog-app/_parent/products/product_analytics/frontend/insights/trends/TrendsBarChart/TrendsBarChart 10.6 kB
frontend/dist-report/posthog-app/_parent/products/product_analytics/frontend/insights/trends/TrendsLifecycleChart/TrendsLifecycleChart 6.73 kB
frontend/dist-report/posthog-app/_parent/products/product_analytics/frontend/insights/trends/TrendsLineChart/TrendsLineChart 6.43 kB
frontend/dist-report/posthog-app/_parent/products/product_analytics/frontend/insights/trends/TrendsPieChart/TrendsPieChart 5.98 kB
frontend/dist-report/posthog-app/_parent/products/replay_vision/frontend/observations/ReplayObservation 20.1 kB
frontend/dist-report/posthog-app/_parent/products/replay_vision/frontend/replay_scanners/ReplayScanner 37.2 kB
frontend/dist-report/posthog-app/_parent/products/replay_vision/frontend/replay_scanners/ReplayScannersScene 23.5 kB
frontend/dist-report/posthog-app/_parent/products/replay_vision/frontend/replay_scanners/ScannerEditorScene 25.7 kB
frontend/dist-report/posthog-app/_parent/products/revenue_analytics/frontend/revenueAnalyticsLogic 1.96 kB
frontend/dist-report/posthog-app/_parent/products/revenue_analytics/frontend/RevenueAnalyticsScene 31.4 kB
frontend/dist-report/posthog-app/_parent/products/session_summaries/frontend/SessionGroupSummariesTable 6.05 kB
frontend/dist-report/posthog-app/_parent/products/session_summaries/frontend/SessionGroupSummaryScene 25.5 kB
frontend/dist-report/posthog-app/_parent/products/skills/frontend/LLMSkillScene 2.15 kB
frontend/dist-report/posthog-app/_parent/products/skills/frontend/LLMSkillsScene 2.16 kB
frontend/dist-report/posthog-app/_parent/products/tasks/frontend/SlackTaskContextScene 9.91 kB
frontend/dist-report/posthog-app/_parent/products/tasks/frontend/TaskDetailScene 25.8 kB
frontend/dist-report/posthog-app/_parent/products/tasks/frontend/TaskTracker 15.4 kB
frontend/dist-report/posthog-app/_parent/products/tracing/frontend/TracingScene 83.2 kB
frontend/dist-report/posthog-app/_parent/products/user_interviews/frontend/UserInterview 10.9 kB
frontend/dist-report/posthog-app/_parent/products/user_interviews/frontend/UserInterviewResponse 8.97 kB
frontend/dist-report/posthog-app/_parent/products/user_interviews/frontend/UserInterviews 7.08 kB
frontend/dist-report/posthog-app/_parent/products/visual_review/frontend/scenes/VisualReviewIndexScene 3.62 kB
frontend/dist-report/posthog-app/_parent/products/visual_review/frontend/scenes/VisualReviewRunScene 47.3 kB
frontend/dist-report/posthog-app/_parent/products/visual_review/frontend/scenes/VisualReviewRunsScene 8.27 kB
frontend/dist-report/posthog-app/_parent/products/visual_review/frontend/scenes/VisualReviewSettingsScene 12.2 kB
frontend/dist-report/posthog-app/_parent/products/visual_review/frontend/scenes/VisualReviewSnapshotHistoryScene 14.8 kB
frontend/dist-report/posthog-app/_parent/products/visual_review/frontend/scenes/VisualReviewSnapshotOverviewScene 20.4 kB
frontend/dist-report/posthog-app/_parent/products/workflows/frontend/TemplateLibrary/MessageTemplate 17.7 kB
frontend/dist-report/posthog-app/_parent/products/workflows/frontend/Workflows/WorkflowScene 104 kB
frontend/dist-report/posthog-app/_parent/products/workflows/frontend/WorkflowsScene 62.7 kB
frontend/dist-report/posthog-app/src/index 61.6 kB
frontend/dist-report/posthog-app/src/layout/panel-layout/ai-first/tabs/NavTabChat 7.99 kB
frontend/dist-report/posthog-app/src/lib/components/ActivityLog/describers 129 kB
frontend/dist-report/posthog-app/src/lib/components/AppShortcuts/utils/DebugCHQueriesImpl 19.2 kB
frontend/dist-report/posthog-app/src/lib/components/Cards/TextCard/TextCardMarkdownEditor 10.6 kB
frontend/dist-report/posthog-app/src/lib/components/MonacoDiffEditor 533 B
frontend/dist-report/posthog-app/src/lib/lemon-ui/LemonMarkdown/MermaidDiagram 2 kB
frontend/dist-report/posthog-app/src/lib/lemon-ui/LemonTextArea/LemonTextAreaMarkdown 790 B
frontend/dist-report/posthog-app/src/lib/lemon-ui/Link/Link 415 B
frontend/dist-report/posthog-app/src/lib/monaco/CodeEditor 448 B
frontend/dist-report/posthog-app/src/lib/monaco/CodeEditorImpl 26 kB
frontend/dist-report/posthog-app/src/lib/monaco/CodeEditorInline 649 B
frontend/dist-report/posthog-app/src/lib/monaco/vimMode 211 kB
frontend/dist-report/posthog-app/src/lib/ui/Button/ButtonPrimitives 482 B
frontend/dist-report/posthog-app/src/queries/nodes/WebVitals/WebVitals 12.9 kB
frontend/dist-report/posthog-app/src/queries/nodes/WebVitals/WebVitalsPathBreakdown 5.25 kB
frontend/dist-report/posthog-app/src/queries/Query/Query 6.54 kB
frontend/dist-report/posthog-app/src/queries/schema 910 kB
frontend/dist-report/posthog-app/src/scenes/activity/explore/EventsScene 8.71 kB
frontend/dist-report/posthog-app/src/scenes/activity/explore/SessionsScene 10.1 kB
frontend/dist-report/posthog-app/src/scenes/activity/live/LiveEventsTable 7.05 kB
frontend/dist-report/posthog-app/src/scenes/agentic/AgenticAuthorize 5.51 kB
frontend/dist-report/posthog-app/src/scenes/approvals/ApprovalDetail 17.8 kB
frontend/dist-report/posthog-app/src/scenes/approvals/changeRequestsLogic 622 B
frontend/dist-report/posthog-app/src/scenes/audit-logs/AdvancedActivityLogsScene 43.2 kB
frontend/dist-report/posthog-app/src/scenes/AuthenticatedShell 211 kB
frontend/dist-report/posthog-app/src/scenes/authentication/account/AccountConnected 3.04 kB
frontend/dist-report/posthog-app/src/scenes/authentication/account/AgenticAccountMismatch 2.43 kB
frontend/dist-report/posthog-app/src/scenes/authentication/account/credential-review/CredentialReview 5.04 kB
frontend/dist-report/posthog-app/src/scenes/authentication/cli/CLIAuthorize 11.3 kB
frontend/dist-report/posthog-app/src/scenes/authentication/cli/CLILive 4.05 kB
frontend/dist-report/posthog-app/src/scenes/authentication/email-mfa-verify/EmailMFAVerify 3.04 kB
frontend/dist-report/posthog-app/src/scenes/authentication/invite-signup/InviteSignup 1.37 kB
frontend/dist-report/posthog-app/src/scenes/authentication/login-2fa/Login2FA 4.74 kB
frontend/dist-report/posthog-app/src/scenes/authentication/login/Login 1.38 kB
frontend/dist-report/posthog-app/src/scenes/authentication/password-reset/PasswordReset 4.5 kB
frontend/dist-report/posthog-app/src/scenes/authentication/password-reset/PasswordResetComplete 3.06 kB
frontend/dist-report/posthog-app/src/scenes/authentication/shared/passkeyLogic 602 B
frontend/dist-report/posthog-app/src/scenes/authentication/signup/SignupContainer 1.35 kB
frontend/dist-report/posthog-app/src/scenes/authentication/two-factor-reset/TwoFactorReset 4.04 kB
frontend/dist-report/posthog-app/src/scenes/authentication/vercel/VercelConnect 5.03 kB
frontend/dist-report/posthog-app/src/scenes/authentication/vercel/VercelLinkError 2.3 kB
frontend/dist-report/posthog-app/src/scenes/authentication/verify-email/VerifyEmail 4.79 kB
frontend/dist-report/posthog-app/src/scenes/billing/AuthorizationStatus 768 B
frontend/dist-report/posthog-app/src/scenes/billing/Billing 717 B
frontend/dist-report/posthog-app/src/scenes/billing/BillingSection 21.6 kB
frontend/dist-report/posthog-app/src/scenes/cohorts/Cohort 34.1 kB
frontend/dist-report/posthog-app/src/scenes/cohorts/CohortCalculationHistory 7.44 kB
frontend/dist-report/posthog-app/src/scenes/cohorts/Cohorts 10.6 kB
frontend/dist-report/posthog-app/src/scenes/coupons/Coupons 895 B
frontend/dist-report/posthog-app/src/scenes/dashboard/Dashboard 7.93 kB
frontend/dist-report/posthog-app/src/scenes/dashboard/dashboards/Dashboards 21.1 kB
frontend/dist-report/posthog-app/src/scenes/dashboard/dashboards/templates/DashboardTemplateCopyScene 7.16 kB
frontend/dist-report/posthog-app/src/scenes/data-management/DataManagementScene 6.86 kB
frontend/dist-report/posthog-app/src/scenes/data-management/definition/DefinitionEdit 23.5 kB
frontend/dist-report/posthog-app/src/scenes/data-management/definition/DefinitionView 31.7 kB
frontend/dist-report/posthog-app/src/scenes/data-management/MaterializedColumns/MaterializedColumns 12.9 kB
frontend/dist-report/posthog-app/src/scenes/data-management/variables/SqlVariableEditScene 8.64 kB
frontend/dist-report/posthog-app/src/scenes/data-pipelines/batch-exports/BatchExportScene 67.3 kB
frontend/dist-report/posthog-app/src/scenes/data-pipelines/DataPipelinesNewScene 5.18 kB
frontend/dist-report/posthog-app/src/scenes/data-pipelines/DestinationsScene 5.75 kB
frontend/dist-report/posthog-app/src/scenes/data-pipelines/event-filtering/EventFilterScene 23.3 kB
frontend/dist-report/posthog-app/src/scenes/data-pipelines/legacy-plugins/LegacyPluginScene 22 kB
frontend/dist-report/posthog-app/src/scenes/data-pipelines/TransformationsScene 4.85 kB
frontend/dist-report/posthog-app/src/scenes/data-pipelines/WebScriptsScene 5.61 kB
frontend/dist-report/posthog-app/src/scenes/data-warehouse/DataWarehouseScene 8.01 kB
frontend/dist-report/posthog-app/src/scenes/data-warehouse/editor/EditorScene 5.19 kB
frontend/dist-report/posthog-app/src/scenes/debug/DebugScene 25.5 kB
frontend/dist-report/posthog-app/src/scenes/debug/hog/HogRepl 9.15 kB
frontend/dist-report/posthog-app/src/scenes/experiments/Experiment 219 kB
frontend/dist-report/posthog-app/src/scenes/experiments/Experiments 23.3 kB
frontend/dist-report/posthog-app/src/scenes/experiments/SharedMetrics/SharedMetric 12.5 kB
frontend/dist-report/posthog-app/src/scenes/experiments/SharedMetrics/SharedMetrics 1.81 kB
frontend/dist-report/posthog-app/src/scenes/exports/ExportsScene 5.44 kB
frontend/dist-report/posthog-app/src/scenes/feature-flags/FeatureFlag 117 kB
frontend/dist-report/posthog-app/src/scenes/feature-flags/FeatureFlags 3.97 kB
frontend/dist-report/posthog-app/src/scenes/groups/Group 23.5 kB
frontend/dist-report/posthog-app/src/scenes/groups/Groups 9.69 kB
frontend/dist-report/posthog-app/src/scenes/groups/GroupsNew 8.72 kB
frontend/dist-report/posthog-app/src/scenes/health-alerts/HealthAlertsScene 6.4 kB
frontend/dist-report/posthog-app/src/scenes/health/categoryDetail/HealthCategoryDetailScene 13.4 kB
frontend/dist-report/posthog-app/src/scenes/health/HealthScene 17.3 kB
frontend/dist-report/posthog-app/src/scenes/health/pipelineStatus/PipelineStatusScene 12.4 kB
frontend/dist-report/posthog-app/src/scenes/heatmaps/scenes/heatmap/HeatmapNewScene 6.48 kB
frontend/dist-report/posthog-app/src/scenes/heatmaps/scenes/heatmap/HeatmapRecordingScene 5.52 kB
frontend/dist-report/posthog-app/src/scenes/heatmaps/scenes/heatmap/HeatmapScene 8.37 kB
frontend/dist-report/posthog-app/src/scenes/heatmaps/scenes/heatmaps/HeatmapsScene 5.33 kB
frontend/dist-report/posthog-app/src/scenes/hog-functions/HogFunctionScene 60.8 kB
frontend/dist-report/posthog-app/src/scenes/hog-functions/misc/Diff 1.39 kB
frontend/dist-report/posthog-app/src/scenes/inbox/InboxScene 71.1 kB
frontend/dist-report/posthog-app/src/scenes/insights/InsightQuickStart/InsightQuickStart 8.26 kB
frontend/dist-report/posthog-app/src/scenes/insights/InsightScene 40.3 kB
frontend/dist-report/posthog-app/src/scenes/insights/views/BoxPlot/BoxPlot 7.04 kB
frontend/dist-report/posthog-app/src/scenes/insights/views/CalendarHeatMap/CalendarHeatMap 9.26 kB
frontend/dist-report/posthog-app/src/scenes/insights/views/RegionMap/RegionMap 31.2 kB
frontend/dist-report/posthog-app/src/scenes/insights/views/WorldMap/WorldMap 6.57 kB
frontend/dist-report/posthog-app/src/scenes/instance/AsyncMigrations/AsyncMigrations 14.4 kB
frontend/dist-report/posthog-app/src/scenes/instance/DeadLetterQueue/DeadLetterQueue 6.78 kB
frontend/dist-report/posthog-app/src/scenes/instance/QueryPerformance/QueryPerformance 10 kB
frontend/dist-report/posthog-app/src/scenes/instance/SystemStatus/SystemStatus 18.3 kB
frontend/dist-report/posthog-app/src/scenes/IntegrationsRedirect/IntegrationsRedirect 921 B
frontend/dist-report/posthog-app/src/scenes/marketing-analytics/MarketingAnalyticsScene 47 kB
frontend/dist-report/posthog-app/src/scenes/max/Max 20.3 kB
frontend/dist-report/posthog-app/src/scenes/models/ModelsScene 19.7 kB
frontend/dist-report/posthog-app/src/scenes/models/NodeDetailScene 20.1 kB
frontend/dist-report/posthog-app/src/scenes/moveToPostHogCloud/MoveToPostHogCloud 4.5 kB
frontend/dist-report/posthog-app/src/scenes/new-tab/NewTabScene 2.76 kB
frontend/dist-report/posthog-app/src/scenes/notebooks/NotebookCanvasScene 12.3 kB
frontend/dist-report/posthog-app/src/scenes/notebooks/NotebookPanel/NotebookPanel 14.3 kB
frontend/dist-report/posthog-app/src/scenes/notebooks/NotebookScene 17.6 kB
frontend/dist-report/posthog-app/src/scenes/notebooks/NotebooksScene 8.91 kB
frontend/dist-report/posthog-app/src/scenes/oauth/OAuthAuthorize 810 B
frontend/dist-report/posthog-app/src/scenes/onboarding/coupon/OnboardingCouponRedemption 1.34 kB
frontend/dist-report/posthog-app/src/scenes/onboarding/Onboarding 795 kB
frontend/dist-report/posthog-app/src/scenes/onboarding/sdks/SdkHealthScene 9.24 kB
frontend/dist-report/posthog-app/src/scenes/organization/ConfirmOrganization/ConfirmOrganization 4.5 kB
frontend/dist-report/posthog-app/src/scenes/organization/Create/Create 703 B
frontend/dist-report/posthog-app/src/scenes/organization/Deactivated 1.17 kB
frontend/dist-report/posthog-app/src/scenes/organization/PendingDeletion 2.23 kB
frontend/dist-report/posthog-app/src/scenes/persons/PersonScene 28.3 kB
frontend/dist-report/posthog-app/src/scenes/persons/PersonsScene 11.9 kB
frontend/dist-report/posthog-app/src/scenes/PreflightCheck/PreflightCheck 5.57 kB
frontend/dist-report/posthog-app/src/scenes/product-tours/ProductTour 273 kB
frontend/dist-report/posthog-app/src/scenes/product-tours/ProductTours 6.11 kB
frontend/dist-report/posthog-app/src/scenes/project-homepage/ProjectHomepage 27.1 kB
frontend/dist-report/posthog-app/src/scenes/project/Create/Create 895 B
frontend/dist-report/posthog-app/src/scenes/project/PendingDeletion 2.6 kB
frontend/dist-report/posthog-app/src/scenes/resource-transfer/ResourceTransfer 10.6 kB
frontend/dist-report/posthog-app/src/scenes/saved-insights/SavedInsights 3.57 kB
frontend/dist-report/posthog-app/src/scenes/session-recordings/detail/SessionRecordingDetail 8.68 kB
frontend/dist-report/posthog-app/src/scenes/session-recordings/file-playback/SessionRecordingFilePlaybackScene 11.3 kB
frontend/dist-report/posthog-app/src/scenes/session-recordings/kiosk/SessionRecordingsKiosk 16.8 kB
frontend/dist-report/posthog-app/src/scenes/session-recordings/player/modal/SessionPlayerModal 8.39 kB
frontend/dist-report/posthog-app/src/scenes/session-recordings/player/snapshot-processing/DecompressionWorkerManager 323 B
frontend/dist-report/posthog-app/src/scenes/session-recordings/playlist/SessionRecordingsPlaylistScene 11.9 kB
frontend/dist-report/posthog-app/src/scenes/session-recordings/SessionRecordings 7.81 kB
frontend/dist-report/posthog-app/src/scenes/session-recordings/settings/SessionRecordingsSettingsScene 9.04 kB
frontend/dist-report/posthog-app/src/scenes/sessions/SessionProfileScene 21.9 kB
frontend/dist-report/posthog-app/src/scenes/settings/SettingsMap 6.66 kB
frontend/dist-report/posthog-app/src/scenes/settings/SettingsScene 9.9 kB
frontend/dist-report/posthog-app/src/scenes/sites/Site 1.57 kB
frontend/dist-report/posthog-app/src/scenes/startups/StartupProgram 21.1 kB
frontend/dist-report/posthog-app/src/scenes/StripeConfirmInstall/StripeConfirmInstall 3.67 kB
frontend/dist-report/posthog-app/src/scenes/subscriptions/SubscriptionScene 17.7 kB
frontend/dist-report/posthog-app/src/scenes/subscriptions/SubscriptionsScene 7.1 kB
frontend/dist-report/posthog-app/src/scenes/surveys/forms/SurveyFormBuilder 3.16 kB
frontend/dist-report/posthog-app/src/scenes/surveys/Survey 7.65 kB
frontend/dist-report/posthog-app/src/scenes/surveys/Surveys 27.9 kB
frontend/dist-report/posthog-app/src/scenes/surveys/wizard/SurveyWizard 69.9 kB
frontend/dist-report/posthog-app/src/scenes/themes/CustomCssScene 5.05 kB
frontend/dist-report/posthog-app/src/scenes/toolbar-launch/ToolbarLaunch 4 kB
frontend/dist-report/posthog-app/src/scenes/Unsubscribe/Unsubscribe 1.71 kB
frontend/dist-report/posthog-app/src/scenes/web-analytics/SessionAttributionExplorer/SessionAttributionExplorerScene 12.5 kB
frontend/dist-report/posthog-app/src/scenes/web-analytics/WebAnalyticsScene 20.6 kB
frontend/dist-report/posthog-app/src/scenes/wizard/Wizard 4.45 kB
frontend/dist-report/posthog-app/src/sharedChunkAnchors 1.33 kB
frontend/dist-report/render-query/src/render-query/render-query 24.6 MB
frontend/dist-report/toolbar/src/toolbar/toolbar 10.5 MB

compressed-size-action

@benjackwhite benjackwhite marked this pull request as ready for review June 16, 2026 11:11
@assign-reviewers-posthog assign-reviewers-posthog Bot requested a review from a team June 16, 2026 11:12
@posthog

posthog Bot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor

👋 Visual changes detected for this PR.

Review and approve in PostHog Visual Review

If these changes are unexpected, they may be caused by a flaky test or a broken snapshot on master. Don't approve — rerun the job or wait for a fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant