Skip to content
Merged
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 content/en/feature_flags/client/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function Banner() {

### Suspense support

Built-in [suspense](https://react.dev/reference/react/Suspense) support makes this easy to avoid displaying components with feature flags until provider initialization is complete, or when the context changes. Pass `{ suspend: true }` in the hook options to leverage this functionality.
Built-in [suspense](https://react.dev/reference/react/Suspense) support allows you to avoid displaying components with feature flags until provider initialization is complete, or when the context changes. Pass `{ suspend: true }` in the hook options to use this functionality.

For example:

Expand Down
Loading