diff --git a/components/cycle-day/labels/labels.js b/components/cycle-day/labels/labels.js index 54db7e7..b70d6d9 100644 --- a/components/cycle-day/labels/labels.js +++ b/components/cycle-day/labels/labels.js @@ -44,7 +44,7 @@ export const sex = { ring: 'Ring', implant: 'Implant', diaphragm: 'Diaphragm', - unprotected: 'Unprotected', + none: 'None', other: 'Other', activityExplainer: 'Were you sexually active today?', contraceptiveExplainer: 'Did you use contraceptives?' diff --git a/components/cycle-day/symptoms/sex.js b/components/cycle-day/symptoms/sex.js index 3bca232..1e14b06 100644 --- a/components/cycle-day/symptoms/sex.js +++ b/components/cycle-day/symptoms/sex.js @@ -41,8 +41,8 @@ const contraceptiveBoxes = [{ label: labels.diaphragm, stateKey: 'diaphragm' }, { - label: labels.unprotected, - stateKey: 'unprotected' + label: labels.none, + stateKey: 'none' }, { label: labels.other, stateKey: 'other' diff --git a/db/schema.js b/db/schema.js index 0928461..96445cc 100644 --- a/db/schema.js +++ b/db/schema.js @@ -68,7 +68,7 @@ const SexSchema = { ring: { type: 'bool', optional: true }, implant: { type: 'bool', optional: true }, diaphragm: { type: 'bool', optional: true }, - unprotected: { type: 'bool', optional: true }, + none: { type: 'bool', optional: true }, other: { type: 'bool', optional: true }, note: { type: 'string', optional: true } } @@ -139,4 +139,4 @@ export default [ DesireSchema, SexSchema, PainSchema -] \ No newline at end of file +]