Skip to content

Commit

Permalink
[PWA] Update questions & answers.
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanem committed Nov 24, 2024
1 parent 7385183 commit 71e78a4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/pwa/Pwa.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const questions = [
options: [
{ label: 'Apple', filterValue: ['iOS'] },
{ label: 'Android', filterValue: ['Android'] },
{ label: 'Both', filterValue: ['iOS', 'Android'] }
{ label: 'Any', filterValue: [] }
],
Field: SingleAnswerButtons,
id: 'Platforms',
Expand All @@ -51,7 +51,7 @@ const questions = [
{
label: 'Willing to pay?',
options: [
{ label: `It doesn't matter to me`, filterValue: [] },
{ label: `It doesn't matter`, filterValue: [] },
{ label: 'No, totally free only', filterValue: ['Totally Free'] },
{ label: 'Yes, can pay one time download fee', filterValue: ['Payment'] },
{ label: 'Yes, can pay subscription fee', filterValue: ['Subscription'] },
Expand All @@ -63,30 +63,30 @@ const questions = [
label: 'Need a privacy policy?',
id: 'Privacy',
options: [
{ label: `It doesn't matter to me`, filterValue: [] },
{ label: `It doesn't matter`, filterValue: [] },
{ label: 'Yes, only apps with privacy policies', filterValue: ['Has Privacy Policy'] }
]
},
{
label: 'Need supporting evidence?',
id: 'ClinicalFoundations',
options: [
{ label: 'Not Required', filterValue: [] },
{ label: `It doesn't matter`, filterValue: [] },
//{ label: 'Supporting Evidence & Crisis Support', filterValue: ['Supporting Studies', 'Appropriately Advises Patient in Case of Emergency'] },
{ label: 'Yes', filterValue: ['Supporting Studies'] }
{ label: 'Yes, only apps with supporting studies', filterValue: ['Supporting Studies'] }
//{ label: 'Crisis Support', filterValue: ['Appropriately Advises Patient in Case of Emergency'] }
]
},
{
label: 'Condition target?',
id: 'Conditions',
options: [{ label: 'Skip', filterValue: [] }].concat(Conditions.filter(v => v !== 'Non-Specific').map(c => ({ label: c, filterValue: [c] })))
options: [{ label: `It doesn't matter`, filterValue: [] }].concat(Conditions.filter(v => v !== 'Non-Specific').map(c => ({ label: c, filterValue: [c] })))
},
{
label: 'Desired treatment approach?',
id: 'TreatmentApproaches',
options: [
{ label: 'Skip', filterValue: [] },
{ label: `It doesn't matter`, filterValue: [] },
//{ label: 'Acceptance and Commitment', filterValue: [] },
{ label: 'Acceptance and Commitment Therapy (ACT)', filterValue: ['ACT'] },
{ label: 'Cognitive Behavioral Therapy (CBT)', filterValue: ['CBT'] },
Expand All @@ -100,7 +100,7 @@ const questions = [
label: 'Feature included?',
id: 'Features',
options: [
{ label: 'Skip', filterValue: [] },
{ label: `It doesn't matter`, filterValue: [] },
{ label: 'Goal Setting', filterValue: ['Goal Setting/Habits'] },
{ label: 'Journaling', filterValue: ['Journaling'] },
{ label: 'Medication Tracking', filterValue: ['Track Medication'] },
Expand Down

0 comments on commit 71e78a4

Please sign in to comment.