Skip to content

Commit

Permalink
fix: turn ssr=true on for FeatureFlagProvider (#2021)
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity authored Jan 15, 2025
1 parent 16e4f7f commit b46c59e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FeatureFlagsConfig } from "../atoms";
const LDFeatureFlagProvider = dynamic(
() =>
import("./LDFeatureFlagProvider").then((mod) => mod.LDFeatureFlagProvider),
{ ssr: false }
{ ssr: true } // ssr must be true otherwise the entire tree will not be rendered server-side
);

interface FeatureFlagProviderProps {
Expand Down

0 comments on commit b46c59e

Please sign in to comment.