Skip to content
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

Site typo fix #10629

Merged
merged 2 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contents/tutorials/nuxtjs-ab-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ const captureEventInPostHog = () => {

Now, when you refresh the page, the button text is already set when the page loads.

> **Note:** This only works on subsequence visits to your app where the PostHog cookie is set. Using this method still requires waiting for PostHog and feature flags to load on the first visit.
> **Note:** This only works on subsequent visits to your app where the PostHog cookie is set. Using this method still requires waiting for PostHog and feature flags to load on the first visit.
>
> The solution to this is to [`identify`](/docs/product-analytics/identify) your users using a distinct ID which is not cookie-based.

Expand Down
2 changes: 1 addition & 1 deletion contents/tutorials/one-time-feature-flags.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tags:

Sometimes you want to show users a component or some content only once. You can use a field in their user model or store it locally, but this gets messy fast. It also might prevent you from changing it remotely. A better way to do this is a feature flag that changes once a user completes what you want.

In this tutorial, we show how to set up a one-time feature flag using PostHog by building a basic Express.js API that provides one response on the first request, and a different one on subsequence requests.
In this tutorial, we show how to set up a one-time feature flag using PostHog by building a basic Express.js API that provides one response on the first request, and a different one on subsequent requests.

## Creating our Express app

Expand Down
2 changes: 1 addition & 1 deletion src/pages/founder-stack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function FounderStack() {
interested in our <Link to="/merch?product=copy-pasta-t-shirt">Copy/Pasta shirt</Link> or{' '}
<Link to="/merch?product=copy-pasta-hoodie">hoodie</Link>, or perhaps you want to go a bit
nerdier with the{' '}
<Link to="/merch?product=data-warehouse-t-shirt">My other name is a data warehouse</Link>{' '}
<Link to="/merch?product=data-warehouse-t-shirt">My other home is a data warehouse</Link>{' '}
shirt.
</p>
</div>
Expand Down