From 6bd9d202dc2c75a4d72f990e452229b25e20cbbf Mon Sep 17 00:00:00 2001 From: Vim USDS Date: Wed, 27 Oct 2021 17:48:27 -0700 Subject: [PATCH] Add title to IQ iframes --- client/src/components/IQContactForm/IQContactForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/IQContactForm/IQContactForm.tsx b/client/src/components/IQContactForm/IQContactForm.tsx index 2bf4e41f..9bf6304c 100644 --- a/client/src/components/IQContactForm/IQContactForm.tsx +++ b/client/src/components/IQContactForm/IQContactForm.tsx @@ -9,9 +9,9 @@ interface IIQContactForm { const IQContactForm = ({messageType}:IIQContactForm) => { if (messageType === '') return null; if (messageType === CONTACT_COPY.MESSAGE_TYPES.BUG_REPORT.defaultMessage) { - return ; + return ; } else { - return ; + return ; } };