A/B Test triggers to maximize reviews
Each Trigger corresponds to a specific feature (e.g., "PDF Export", "Search"). Use Versions to A/B test how you ask for feedback on each feature independently.
The best part? You don't need to change a single line of code. The SDK automatically fetches the active version for the requested trigger.
1// Example: Optimizing the "PDF Export" feature
2const { review } = useProofConvert();
3
4// Keep using the same key 'export-pdf'
5// The SDK automatically serves the active version (v1, v2...)
6review('export-pdf');