diff --git a/apps/formbricks-com/pages/blog/weekly-update-170223/index.mdx b/apps/formbricks-com/pages/blog/weekly-update-170223/index.mdx index 56f37ce213..33143f0675 100644 --- a/apps/formbricks-com/pages/blog/weekly-update-170223/index.mdx +++ b/apps/formbricks-com/pages/blog/weekly-update-170223/index.mdx @@ -41,7 +41,7 @@ Here is the [Landing Page](https://formbricks.com/pmf) and the [Demo dashboard]( ## User tests, UI improvements, Superhuman as a Report -We performed a few user tests with the PMF dashboard and imrpoved the UI. We also reworked the Superhuman Dashboard to be understood more as a report. We auto-select the segment with the largest share of “very disappointed” users and display the insights accordingly to seperate the signal from the noise. +We performed a few user tests with the PMF dashboard and improved the UI. We also reworked the Superhuman Dashboard to be understood more as a report. We auto-select the segment with the largest share of “very disappointed” users and display the insights accordingly to seperate the signal from the noise. Superhuman PMF Report diff --git a/apps/web/src/lib/posthog.ts b/apps/web/src/lib/posthog.ts index f7153408a4..05b91b0607 100644 --- a/apps/web/src/lib/posthog.ts +++ b/apps/web/src/lib/posthog.ts @@ -36,7 +36,7 @@ export const usePosthog = () => { export const identifyPosthogUser = (user) => { if (enabled) { //posthog.identify(user.id, { email: user.email, name: user.name }); - posthog.identify(user.id, null, { email: user.email, name: user.name }); + posthog.identify(user.id); } };