1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: disable search feedback by default (#5767)

This commit is contained in:
Jaanus Sellin 2024-01-04 16:44:17 +02:00 committed by GitHub
parent ab139553c5
commit 75e81515c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ exports[`should create default config 1`] = `
"embedProxyFrontend": true,
"enableLicense": false,
"featureSearchAPI": false,
"featureSearchFeedback": true,
"featureSearchFeedback": false,
"featureSearchFeedbackPosting": false,
"featureSearchFrontend": false,
"featuresExportImport": true,

View File

@ -159,7 +159,7 @@ const flags: IFlags = {
),
featureSearchFeedback: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_FEATURE_SEARCH_FEEDBACK,
true,
false,
),
featureSearchFeedbackPosting: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_FEATURE_SEARCH_FEEDBACK_POSTING,