From 96d76f0052d9886efa23d72646f8c09d082fd7e9 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Mon, 27 Oct 2025 10:11:49 +0900 Subject: [PATCH] [backport rh-test] [bugfix] fix survey properties mapping to match actual survey data (#6315) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #6314 to `rh-test` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6315-backport-rh-test-bugfix-fix-survey-properties-mapping-to-match-actual-survey-data-2996d73d36508170a56cea2a95188aea) by [Unito](https://www.unito.io) Co-authored-by: Christian Byrne --- src/platform/telemetry/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/platform/telemetry/types.ts b/src/platform/telemetry/types.ts index 5fe5265ff..06e3c6946 100644 --- a/src/platform/telemetry/types.ts +++ b/src/platform/telemetry/types.ts @@ -26,13 +26,13 @@ export interface AuthMetadata { /** * Survey response data for user profiling + * Maps 1-to-1 with actual survey fields */ export interface SurveyResponses { - industry?: string - team_size?: string - use_case?: string familiarity?: string - intended_use?: 'personal' | 'client' | 'inhouse' + industry?: string + useCase?: string + making?: string[] } /**