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
5 changes: 2 additions & 3 deletions src/hooks/useProactiveAppReview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ function useProactiveAppReview(): UseProactiveAppReviewReturn {
return false;
}

// Don't show if user gave a definitive answer (positive/negative)
// Only allow re-prompting if they skipped
if (proactiveAppReview.response && proactiveAppReview.response !== 'skip') {
// Don't show again after user gave a positive response
if (proactiveAppReview.response && proactiveAppReview.response === 'positive') {
Comment thread
MariaHCD marked this conversation as resolved.
return false;
}

Expand Down
Loading