fix typo in weekly update

This commit is contained in:
Matthias Nannt
2023-02-17 19:06:22 +01:00
parent 2408ba4588
commit 04e259b07f
2 changed files with 2 additions and 2 deletions

View File

@@ -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.
<Image src={Superhuman} alt="Superhuman PMF Report" className="rounded-lg" />

View File

@@ -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);
}
};