diff --git a/src/component/product/settingsTab/GeneralTab.jsx b/src/component/product/settingsTab/GeneralTab.jsx
index 99e5103..8d5f251 100644
--- a/src/component/product/settingsTab/GeneralTab.jsx
+++ b/src/component/product/settingsTab/GeneralTab.jsx
@@ -77,7 +77,9 @@ const GeneralTab = memo(({name='Full Name', data, isCustom, productData, backend
:value.controls == 'TEXTAREA' ?
- :
+ : value.controls == 'SELECT_NO_YES' ?
+ <>This will be a drop down yes no>
+ :
null
}
diff --git a/src/component/product/settingsTab/Settings.jsx b/src/component/product/settingsTab/Settings.jsx
index 3242682..0f94aa0 100644
--- a/src/component/product/settingsTab/Settings.jsx
+++ b/src/component/product/settingsTab/Settings.jsx
@@ -30,6 +30,7 @@ const Settings = memo(({productData}) => {
const footerFields ={
footer_description: { name: 'Footer Description', controls: 'TEXTAREA', active: true },
+ boolean_footer_show_email: { name: 'Show email in footer', controls: 'SELECT_NO_YES', active: true },
}
const aboutFields ={