diff --git a/src/pages-and-resources/live/LiveCommonFields.jsx b/src/pages-and-resources/live/LiveCommonFields.jsx index e19ee4c5d..34abeca4c 100644 --- a/src/pages-and-resources/live/LiveCommonFields.jsx +++ b/src/pages-and-resources/live/LiveCommonFields.jsx @@ -23,7 +23,7 @@ function LiveCommonFields({ value={values.consumerSecret} floatingLabel={intl.formatMessage(messages.consumerSecret)} className="pb-1" - type="input" + type="password" /> provider === 'zoom' || (provider === 'big_blue_button' && tier === bbbPlanTypes.commercial), - then: Yup.string().required(intl.formatMessage(messages.consumerSecretRequired)), + then: Yup.string().notRequired(intl.formatMessage(messages.consumerSecretRequired)), }), launchUrl: Yup.string().when(['provider', 'tierType'], { is: (provider, tier) => provider === 'zoom' || (provider === 'big_blue_button' && tier === bbbPlanTypes.commercial),