[backport rh-test] [bugfix] fix survey properties mapping to match actual survey data (#6315)

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 <cbyrne@comfy.org>
This commit is contained in:
Comfy Org PR Bot
2025-10-27 10:11:49 +09:00
committed by GitHub
parent 5229a48ef5
commit 96d76f0052

View File

@@ -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[]
}
/**