Skip to content

Commit

Permalink
chore(surveys): move open feedback template to top (#18361)
Browse files Browse the repository at this point in the history
  • Loading branch information
liyiy authored Nov 17, 2023
1 parent e2df3a1 commit 4c374b6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions frontend/src/scenes/surveys/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,16 @@ export enum SurveyTemplateType {
}

export const defaultSurveyTemplates = [
{
type: SurveyTemplateType.OpenFeedback,
questions: [
{
type: SurveyQuestionType.Open,
question: 'What can we do to improve our product?',
},
],
description: "Let your users share what's on their mind.",
},
{
type: SurveyTemplateType.Interview,
questions: [
Expand Down Expand Up @@ -245,14 +255,4 @@ export const defaultSurveyTemplates = [
],
description: 'Find out if it was something you said.',
},
{
type: SurveyTemplateType.OpenFeedback,
questions: [
{
type: SurveyQuestionType.Open,
question: 'What can we do to improve our product?',
},
],
description: "Let your users share what's on their mind.",
},
]

0 comments on commit 4c374b6

Please sign in to comment.