Skip to content

Commit 322438b

Browse files
committed
fix(survey): adjust survey configuration parameters for better candidate selection (#2654)
(cherry picked from commit 03c2f9a)
1 parent 9b1510e commit 322438b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/utils/survey.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ const SurveyConfig = {
2121
DEBUG_ALWAYS_PROMPT: false, // Forces survey prompt regardless of conditions
2222
DISABLE_SURVEY: false, // Completely disables survey functionality
2323
PROBABILITY: 1, // Probability to become candidate (0-1), Azure Tools uses 0.15
24-
A_B_TEST_SELECTION: 0.5, // change this value to adjust the candidate selection (e.g. 0.50 for 50% of users)
24+
A_B_TEST_SELECTION: 1, // change this value to adjust the candidate selection (e.g. 0.50 for 50% of users)
2525
PROMPT_ENGLISH_ONLY: false, // Whether to limit survey to English locales
2626
PROMPT_VERSION_ONLY_ONCE: true, // Only prompt once per major/minor version
2727
PROMPT_DATE_ONLY_ONCE: true, // Only prompt once per day
28-
MIN_SESSIONS_BEFORE_PROMPT: 9, // Sessions required before eligible for prompting
29-
SNOOZE_SESSIONS: 3, // Sessions to skip after "remind me later"
28+
MIN_SESSIONS_BEFORE_PROMPT: 3, // Sessions required before eligible for prompting
29+
SNOOZE_SESSIONS: 2, // Sessions to skip after "remind me later"
3030
REARM_AFTER_DAYS: 90, // Days before re-prompting after taking survey
3131
REARM_OPT_OUT: true, // Whether to re-prompt after opt-out period
3232
},

0 commit comments

Comments
 (0)