Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add new unsub options #28399

Merged
merged 2 commits into from
Feb 6, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions frontend/src/scenes/billing/billingProductLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export const UNSUBSCRIBE_REASONS: UnsubscribeReason[] = [
{ reason: 'Poor customer support', question: 'Please provide details on your support experience.' },
{ reason: 'Too difficult to use', question: 'What was difficult to use?' },
{ reason: 'Not enough hedgehogs', question: 'How many hedgehogs do you need? (but really why are you leaving)' },
{ reason: 'Shutting down', question: "We're sorry to hear that ❤️. What was your favorite feature?" },
{ reason: 'Technical issues', question: 'What technical problems did you experience?' },
{ reason: 'Other (let us know below!)', question: 'Why are you leaving?' },
]

Expand Down Expand Up @@ -329,8 +331,7 @@ export const billingProductLogic = kea<billingProductLogicType>([
const reasonObject = UNSUBSCRIBE_REASONS.find((r) => r.reason === reason)
return reasonObject?.question
})
.join(' ')
.concat(' (required)')
.join('\n')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed the required because it's obvious with the disabled submit and tool tip and looked odd with multiple answers selected.

},
],
isSessionReplayWithAddons: [
Expand Down
Loading