diff --git a/src/Forms/Form.Workforce.tsx b/src/Forms/Form.Workforce.tsx index d61effd1..0a7dac42 100644 --- a/src/Forms/Form.Workforce.tsx +++ b/src/Forms/Form.Workforce.tsx @@ -168,8 +168,7 @@ const WorkforceForm = ({ sessionDates }: WorkforceFormProps) => { // eslint-disable-next-line react-hooks/exhaustive-deps -- Ignore form change }, [currentValues.sessionDate, currentValues.attendingLocation, sessionDates]); - console.log('sessionDate', form.getSelect('sessionDate')); - console.log('attendingLocation', form.get('attendingLocation')); + return (
@@ -291,7 +290,7 @@ const WorkforceForm = ({ sessionDates }: WorkforceFormProps) => { {/* Checkbox to opt-in to receiving SMS messages */}
{

)} {form.get('smsOptIn') === 'false' && ( -

{`By opting out of SMS messaging, you acknowledge that you may miss important information about upcoming sessions and registrations.`}

+

{`By opting out of text messages, you acknowledge that you may miss important information about upcoming sessions and registrations.`}

)} {form.get('smsOptIn') === '' && ( -

{`You can opt out of sms notifications at any time by replying "STOP"`}

+

{`You can opt out of text messages at any time by replying "STOP"`}

)}