diff --git a/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx b/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx index 978cbec20ac8..8d613e3e8343 100644 --- a/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx +++ b/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx @@ -101,7 +101,7 @@ You can configure the `FeatureFlagRequestTimeout` parameter when initializing yo client, _ := posthog.NewWithConfig( os.Getenv(""), posthog.Config{ - PersonalApiKey: "your personal API key", // Required for feature flags + PersonalApiKey: "your personal API key", // Optional, but much more performant. If this token is not supplied, then fetching feature flag values will be slower. Endpoint: "", FeatureFlagRequestTimeout: 3 // Time in seconds. Default is 3. },