(value: ContactRequestPayload['topic'])
| 71 | }) |
| 72 | |
| 73 | export function getContactTopicLabel(value: ContactRequestPayload['topic']): string { |
| 74 | return CONTACT_TOPIC_OPTIONS.find((option) => option.value === value)?.label ?? value |
| 75 | } |
| 76 | |
| 77 | export type HelpEmailType = 'bug' | 'feedback' | 'feature_request' | 'other' |
| 78 |