+ { ( ! helpCenterLocked || forceShow ) && (
+
+ ) }
+
+ { isError && (
+
+ { __(
+ 'Oops! Something went wrong. Please try again.',
+ 'wp-plugin-hostgator'
+ ) }
+
+ ) }
+
+ );
+};
+
+export default HelpCenterSettings;
diff --git a/src/app/pages/settings/index.js b/src/app/pages/settings/index.js
index df474659..ff6651e3 100644
--- a/src/app/pages/settings/index.js
+++ b/src/app/pages/settings/index.js
@@ -1,6 +1,8 @@
import { Container, Page } from '@newfold/ui-component-library';
-import AutomaticUpdates from './automaticUpdates';
import ComingSoon from './comingSoon';
+import AutomaticUpdates from './automaticUpdates';
+import HelpCenterSettings from './helpCenterSettings';
+import WonderBlocksSettings from './wonderBlocksSettings';
import CommentSettings from './commentSettings';
import ContentSettings from './contentSettings';
@@ -24,6 +26,18 @@ const Settings = () => {