Skip to content

posthog migration: part 4 #7366

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 19, 2025
Merged

Conversation

jnsdls
Copy link
Member

@jnsdls jnsdls commented Jun 18, 2025

Analytics Event Reporting System

This PR introduces a structured analytics event reporting system for the dashboard app using PostHog. It provides clear guidelines and standardized patterns for tracking user actions.

Key Features

  • Added a centralized analytics reporting system in src/@/analytics/report.ts
  • Implemented standardized naming conventions for events (<subject> <verb>) and reporting functions (report<Subject><Verb>)
  • Created comprehensive documentation in apps/dashboard/src/@/analytics/README.md
  • Added mandatory JSDoc requirements to document the purpose and ownership of each event
  • Integrated the first event: reportContractDeployed to track contract deployments
  • Updated the contract deployment form to use the new analytics system

Guidelines

  • Events should only be added when they answer concrete product/business questions
  • All events must include typed properties and proper documentation
  • Analytics code is client-side only (never import posthog-js in server components)
  • Developers should notify #core-services before renaming or removing events

This standardized approach will make our analytics more maintainable, discoverable, and purposeful.

Summary by CodeRabbit

  • Documentation

    • Added comprehensive guidelines and a README for analytics event reporting, including naming conventions, usage examples, and requirements for event tracking in the dashboard app.
  • New Features

    • Introduced new analytics events covering contract deployments and multiple stages of team onboarding, such as plan selection, member invitations, and onboarding completion.
  • Refactor

    • Centralized analytics reporting by replacing generic event tracking with dedicated reporting functions across contract deployment and team onboarding flows.
    • Removed redundant and granular event tracking calls, simplifying analytics integration and improving consistency.

PR-Codex overview

This PR focuses on enhancing analytics event reporting for onboarding processes and contract deployments using posthog. It introduces new reporting functions, updates existing components to utilize these functions, and improves error handling.

Detailed summary

  • Added new reporting functions in src/@/analytics/report.ts for onboarding and contract events.
  • Updated InviteTeamMembers and TeamInfoForm components to report onboarding events.
  • Removed useTrack and replaced it with specific reporting functions.
  • Enhanced parseError function to return strings for error messages.
  • Improved feedback reporting in Feedback component.
  • Updated InviteSection to pass success count on invite completion.
  • Added documentation on analytics guidelines in AGENTS.md and README.md.

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

Copy link

changeset-bot bot commented Jun 18, 2025

⚠️ No Changeset found

Latest commit: 2aa9ce5

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Jun 18, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
docs-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 19, 2025 1:05am
login ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 19, 2025 1:05am
nebula ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 19, 2025 1:05am
thirdweb_playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 19, 2025 1:05am
thirdweb-www ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 19, 2025 1:05am
wallet-ui ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 19, 2025 1:05am

Copy link
Contributor

coderabbitai bot commented Jun 18, 2025

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

The changes introduce standardized guidelines and implementation for analytics event reporting in the dashboard application. Documentation is added to specify naming conventions, event rationale, and ownership. A new centralized analytics module with multiple reporting functions is created. Existing components replace previous generic tracking calls with these new specific reporting functions, centralizing and standardizing analytics event handling.

Changes

File(s) Change Summary
.cursor/rules/dashboard.mdc, AGENTS.md Added detailed guidelines for analytics event reporting, including event naming, function naming, rationale, ownership, and usage rules.
apps/dashboard/src/@/analytics/README.md Added README with comprehensive instructions on PostHog analytics usage, event creation criteria, naming conventions, and maintenance procedures.
apps/dashboard/src/@/analytics/report.ts Added new module exporting multiple typed analytics event reporting functions (e.g., reportContractDeployed, onboarding events) with JSDoc comments.
apps/dashboard/src/components/contract-components/contract-deploy-form/custom-contract.tsx Replaced generic event tracking with a direct call to reportContractDeployed on successful contract deployment; removed prior tracking hooks and calls.
apps/dashboard/src/app/(app)/get-started/team/[team_slug]/select-plan/_components/plan-selector.tsx Replaced trackEvent calls with reportOnboardingPlanSelected and reportOnboardingPlanSelectionSkipped functions; removed useTrack hook.
apps/dashboard/src/app/(app)/login/onboarding/team-onboarding/InviteTeamMembers.tsx Removed generic trackEvent prop and calls; replaced with specific reporting functions for upsell clicks, plan selections, and invites; updated invite state logic.
apps/dashboard/src/app/(app)/login/onboarding/team-onboarding/team-onboarding.tsx Removed all useTrack hook usage and granular tracking calls; added reportOnboardingStarted on mount and reportOnboardingCompleted on completion.
apps/dashboard/src/app/(app)/login/onboarding/team-onboarding/InviteTeamMembers.stories.tsx Removed trackEvent prop passed to InviteTeamMembersUI in storybook stories.
apps/dashboard/src/app/(app)/get-started/team/[team_slug]/select-plan/page.tsx Removed commented-out client instantiation code; no functional changes.
apps/dashboard/src/app/(app)/team/[team_slug]/(team)/~/settings/members/InviteSection.tsx Changed onInviteSuccess prop type to accept a success count parameter and updated invocation accordingly.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant ContractDeployForm
    participant reportContractDeployed
    participant PostHog

    User->>ContractDeployForm: Submit deployment form
    ContractDeployForm->>ContractDeployForm: Deploy contract logic
    alt Deployment successful
        ContractDeployForm->>reportContractDeployed: reportContractDeployed({address, chainId})
        reportContractDeployed->>PostHog: posthog.capture("contract deployed", {address, chainId})
    end
Loading
sequenceDiagram
    participant User
    participant PlanSelector
    participant reportOnboardingPlanSelected
    participant reportOnboardingPlanSelectionSkipped
    participant PostHog

    User->>PlanSelector: Select plan or skip
    alt Plan selected
        PlanSelector->>reportOnboardingPlanSelected: reportOnboardingPlanSelected({plan})
        reportOnboardingPlanSelected->>PostHog: posthog.capture("onboarding plan selected", {plan})
    else Plan skipped
        PlanSelector->>reportOnboardingPlanSelectionSkipped: reportOnboardingPlanSelectionSkipped()
        reportOnboardingPlanSelectionSkipped->>PostHog: posthog.capture("onboarding plan selection skipped")
    end
Loading
sequenceDiagram
    participant User
    participant InviteTeamMembersUI
    participant reportOnboardingMembersInvited
    participant reportOnboardingMembersSkipped
    participant reportOnboardingMembersUpsellButtonClicked
    participant reportOnboardingMembersUpsellPlanSelected
    participant PostHog

    User->>InviteTeamMembersUI: Invite members / skip / upsell actions
    alt Members invited
        InviteTeamMembersUI->>reportOnboardingMembersInvited: reportOnboardingMembersInvited({count})
        reportOnboardingMembersInvited->>PostHog: posthog.capture("onboarding members invited", {count})
    else Members skipped
        InviteTeamMembersUI->>reportOnboardingMembersSkipped: reportOnboardingMembersSkipped()
        reportOnboardingMembersSkipped->>PostHog: posthog.capture("onboarding members skipped")
    else Upsell button clicked
        InviteTeamMembersUI->>reportOnboardingMembersUpsellButtonClicked: reportOnboardingMembersUpsellButtonClicked()
        reportOnboardingMembersUpsellButtonClicked->>PostHog: posthog.capture("onboarding members upsell button clicked")
    else Upsell plan selected
        InviteTeamMembersUI->>reportOnboardingMembersUpsellPlanSelected: reportOnboardingMembersUpsellPlanSelected({plan})
        reportOnboardingMembersUpsellPlanSelected->>PostHog: posthog.capture("onboarding members upsell plan selected", {plan})
    end
Loading
sequenceDiagram
    participant TeamInfoForm
    participant InviteTeamMembers
    participant reportOnboardingStarted
    participant reportOnboardingCompleted
    participant PostHog

    TeamInfoForm->>reportOnboardingStarted: reportOnboardingStarted()
    reportOnboardingStarted->>PostHog: posthog.capture("onboarding started")

    InviteTeamMembers->>reportOnboardingCompleted: reportOnboardingCompleted()
    reportOnboardingCompleted->>PostHog: posthog.capture("onboarding completed")
Loading

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added the Dashboard Involves changes to the Dashboard. label Jun 18, 2025
Copy link
Member Author

jnsdls commented Jun 18, 2025


How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • merge-queue - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

This stack of pull requests is managed by Graphite. Learn more about stacking.

Copy link
Member Author

jnsdls commented Jun 18, 2025

@coderabbitai review

Copy link
Contributor

coderabbitai bot commented Jun 18, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link

codecov bot commented Jun 18, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 52.35%. Comparing base (d9eee50) to head (2aa9ce5).
Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #7366   +/-   ##
=======================================
  Coverage   52.35%   52.35%           
=======================================
  Files         939      939           
  Lines       63161    63161           
  Branches     4217     4217           
=======================================
  Hits        33070    33070           
  Misses      29984    29984           
  Partials      107      107           
Flag Coverage Δ
packages 52.35% <ø> (ø)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Contributor

github-actions bot commented Jun 18, 2025

size-limit report 📦

Path Size Loading time (3g) Running time (snapdragon) Total time
thirdweb (esm) 62.53 KB (0%) 1.3 s (0%) 259 ms (+113.52% 🔺) 1.6 s
thirdweb (cjs) 350.55 KB (0%) 7.1 s (0%) 980 ms (+6.24% 🔺) 8 s
thirdweb (minimal + tree-shaking) 5.7 KB (0%) 114 ms (0%) 92 ms (+1192.51% 🔺) 206 ms
thirdweb/chains (tree-shaking) 531 B (0%) 11 ms (0%) 62 ms (+2593.84% 🔺) 72 ms
thirdweb/react (minimal + tree-shaking) 19.59 KB (0%) 392 ms (0%) 115 ms (+555.34% 🔺) 507 ms

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (7)
apps/dashboard/src/components/contract-components/contract-deploy-form/custom-contract.tsx (1)

648-652: Consider capturing failure & attempt events as well

You now track only the successful deployment. If product analytics still care about attempt and error counts (removed in this refactor), add corresponding helpers such as reportContractDeployAttempted / reportContractDeployFailed so funnel drop-off can be analysed.

No action required if those metrics are intentionally dropped.

apps/dashboard/src/@/analytics/README.md (2)

14-20: Fix Markdown table formatting (MD058)

Add blank lines around the table for proper rendering and to silence markdownlint.

-## 2. Naming conventions
-| Concept | Convention | Example |
+## 2. Naming conventions
+
+| Concept | Convention | Example |
-|---------|------------|---------|
+|---------|------------|---------|
-| **Reporting function** | `report<Subject><Verb>` (PascalCase) | `reportContractDeployed` |
-| **File** | All event functions live in the shared `report.ts` file (for now) | — |
+| **Reporting function** | `report<Subject><Verb>` (PascalCase) | `reportContractDeployed` |
+| **File** | All event functions live in the shared `report.ts` file (for now) | — |
+

44-48: Minor punctuation nit

Comma before so connects two independent clauses.

-1. **Explain the "why".** The JSDoc block is mandatory so future contributors know the purpose.  
+1. **Explain the "why".** The JSDoc block is mandatory, so future contributors know the purpose.  
AGENTS.md (2)

107-141: Duplicate guidance now exists in two places – consider DRYing the docs

The “Analytics Event Reporting” section here is copy-pasted almost verbatim into .cursor/rules/dashboard.mdc. Duplicating normative rules in multiple files invites drift and conflicting edits down the road.

Recommend keeping a single source of truth (e.g. the rules file) and linking to it from other docs, or extracting the shared block into a Markdown include.


123-137: Example violates the repo’s own TypeScript style rule (#29)

Rule 3. 29 says: “Write idiomatic TypeScript: explicit function declarations and return types.”
The snippet omits an explicit void return type.

-export function reportContractDeployed(properties: {
+export function reportContractDeployed(properties: {
   address: string;
   chainId: number;
-}) {
+}): void {
   posthog.capture("contract deployed", properties);
 }

A tiny change, but it keeps the example aligned with the documented standard.

.cursor/rules/dashboard.mdc (2)

104-113: Avoid maintaining identical rule text in multiple guideline files

This block duplicates the “Analytics Event Reporting” rules already present in AGENTS.md. Two sources of truth become stale fast—prefer a single canonical location and reference it elsewhere.


122-127: Add explicit void return type in the example

Consistent with the project’s TypeScript style guide, append : void:

-export function reportContractDeployed(properties: {
+export function reportContractDeployed(properties: {
   address: string;
   chainId: number;
-}) {
+}): void {
   posthog.capture("contract deployed", properties);
 }
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 50192f2 and 912f4bb.

📒 Files selected for processing (5)
  • .cursor/rules/dashboard.mdc (1 hunks)
  • AGENTS.md (1 hunks)
  • apps/dashboard/src/@/analytics/README.md (1 hunks)
  • apps/dashboard/src/@/analytics/report.ts (1 hunks)
  • apps/dashboard/src/components/contract-components/contract-deploy-form/custom-contract.tsx (3 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (1)
apps/dashboard/src/components/contract-components/contract-deploy-form/custom-contract.tsx (1)
apps/dashboard/src/@/analytics/report.ts (1)
  • reportContractDeployed (12-20)
🪛 LanguageTool
apps/dashboard/src/@/analytics/README.md

[uncategorized] ~46-~46: Use a comma before ‘so’ if it connects two independent clauses (unless they are closely connected and short).
Context: ...he "why".** The JSDoc block is mandatory so future contributors know the purpose. ...

(COMMA_COMPOUND_SENTENCE_2)

🪛 markdownlint-cli2 (0.17.2)
apps/dashboard/src/@/analytics/README.md

15-15: Tables should be surrounded by blank lines
null

(MD058, blanks-around-tables)

⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: Graphite / mergeability_check
  • GitHub Check: Size
🔇 Additional comments (1)
apps/dashboard/src/@/analytics/report.ts (1)

1-1: ```shell
#!/bin/bash
echo "=== Usages of analytics/report.ts ==="
rg -n "analytics/report" .

echo
echo "=== TSConfig paths ==="
if [ -f tsconfig.json ]; then
rg -n ""paths"" tsconfig.json -A 5
else
echo "tsconfig.json not found"
fi

echo
echo "=== Next.config.js alias ==="
if [ -f next.config.js ]; then
rg -n "alias" next.config.js -A 5
else
echo "next.config.js not found"
fi


</details>

</blockquote></details>

</details>

<!-- This is an auto-generated comment by CodeRabbit for review status -->

cursor[bot]

This comment was marked as outdated.

Copy link

@cursor cursor bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Missing Analytics Event for Plan Upgrades

The analytics event for successful plan upgrades is missing. The trackEvent call for teamOnboarding/upgradePlan/success was removed from the useStripeRedirectEvent callback, which previously tracked when a user's billingPlan became non-free after a Stripe redirect. This successful upgrade event was not replaced by the new analytics system, leading to a loss of critical conversion data for onboarding plan upgrades.

apps/dashboard/src/app/(app)/get-started/team/[team_slug]/select-plan/_components/plan-selector.tsx#L24-L36

https://github.com/thirdweb-dev/js/blob/74ce5f75a2fc63848eb535a61fb9078665628498/apps/dashboard/src/app/(app)/get-started/team/[team_slug]/select-plan/_components/plan-selector.tsx#L24-L36

Fix in Cursor


Bug: Stripe Redirect Fails to Capture Plan Upgrade Event

The tracking event for successful plan upgrades is missing after a Stripe redirect during the team onboarding member invitation step. Previously, the teamOnboarding upgradePlan success event, including the upgraded plan name, was reported when a team's billing plan became non-free after returning from Stripe checkout. This conversion event is no longer captured.

apps/dashboard/src/app/(app)/login/onboarding/team-onboarding/InviteTeamMembers.tsx#L53-L62

await pollWithTimeout({
shouldStop: async () => {
const team = await props.getTeam();
const isNonFreePlan =
team.billingPlan !== "free" && team.billingPlan !== "starter";
return isNonFreePlan;
},
timeoutMs: 5000,
});

Fix in Cursor


Was this report helpful? Give feedback by reacting with 👍 or 👎

Copy link
Contributor

graphite-app bot commented Jun 19, 2025

Merge activity

# Analytics Event Reporting System

This PR introduces a structured analytics event reporting system for the dashboard app using PostHog. It provides clear guidelines and standardized patterns for tracking user actions.

## Key Features

- Added a centralized analytics reporting system in `src/@/analytics/report.ts`
- Implemented standardized naming conventions for events (`<subject> <verb>`) and reporting functions (`report<Subject><Verb>`)
- Created comprehensive documentation in `apps/dashboard/src/@/analytics/README.md`
- Added mandatory JSDoc requirements to document the purpose and ownership of each event
- Integrated the first event: `reportContractDeployed` to track contract deployments
- Updated the contract deployment form to use the new analytics system

## Guidelines

- Events should only be added when they answer concrete product/business questions
- All events must include typed properties and proper documentation
- Analytics code is client-side only (never import `posthog-js` in server components)
- Developers should notify #core-services before renaming or removing events

This standardized approach will make our analytics more maintainable, discoverable, and purposeful.

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->
## Summary by CodeRabbit

- **Documentation**
  - Added comprehensive guidelines and a README for analytics event reporting, including naming conventions, usage examples, and requirements for event tracking in the dashboard app.

- **New Features**
  - Introduced new analytics events covering contract deployments and multiple stages of team onboarding, such as plan selection, member invitations, and onboarding completion.

- **Refactor**
  - Centralized analytics reporting by replacing generic event tracking with dedicated reporting functions across contract deployment and team onboarding flows.
  - Removed redundant and granular event tracking calls, simplifying analytics integration and improving consistency.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on enhancing analytics event reporting for onboarding and contract deployment processes across the application, ensuring better tracking of user interactions and feedback.

### Detailed summary
- Added `.eslintignore` entries for markdown files.
- Updated `InviteTeamMembers` and `InviteSection` to report success counts on invites.
- Introduced new reporting functions in `report.ts` for onboarding and contract events.
- Removed unused `trackEvent` calls, replacing them with specific reporting functions.
- Enhanced documentation for analytics guidelines and event reporting in `README.md` files.

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}`

<!-- end pr-codex -->
@graphite-app graphite-app bot force-pushed the 06-17-posthog_migration_part_3 branch from 0a882e9 to d9eee50 Compare June 19, 2025 00:55
@graphite-app graphite-app bot force-pushed the 06-17-posthog_migration_part_4 branch from 74ce5f7 to 2aa9ce5 Compare June 19, 2025 00:55
Base automatically changed from 06-17-posthog_migration_part_3 to main June 19, 2025 01:05
@graphite-app graphite-app bot merged commit 2aa9ce5 into main Jun 19, 2025
23 checks passed
@graphite-app graphite-app bot deleted the 06-17-posthog_migration_part_4 branch June 19, 2025 01:06
@vercel vercel bot temporarily deployed to Production – thirdweb-www June 19, 2025 01:18 Inactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Dashboard Involves changes to the Dashboard. Portal Involves changes to the Portal (docs) codebase.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants