diff --git a/assets/apps/dashboard/src/Components/Content/Settings/WhiteLabelTabContent.js b/assets/apps/dashboard/src/Components/Content/Settings/WhiteLabelTabContent.js
index f765669f83..70a9839a1a 100644
--- a/assets/apps/dashboard/src/Components/Content/Settings/WhiteLabelTabContent.js
+++ b/assets/apps/dashboard/src/Components/Content/Settings/WhiteLabelTabContent.js
@@ -288,7 +288,7 @@ export default () => {
<>
- {__("White Label Settings", "neve")}
+ {__('White Label Settings', 'neve')}
{showPlaceholder && (
@@ -298,7 +298,7 @@ export default () => {
onClick={() => setShowTierInfo(!showTierInfo)}
>
- {__("Available in Agency Plan", "neve")}
+ {__('Available in Agency Plan', 'neve')}
)}
@@ -307,12 +307,14 @@ export default () => {
{!showPlaceholder && !neveDash.whiteLabelData && (
{__(
- "Please reload this page in order to view the White Label Settings",
- "neve"
+ 'Please reload this page in order to view the White Label Settings',
+ 'neve'
)}
)}
- {!showPlaceholder && !!neveDash.whiteLabelData && }
+ {!showPlaceholder && !!neveDash.whiteLabelData && (
+
+ )}
>
);
};
diff --git a/assets/apps/dashboard/src/Components/Content/Welcome.js b/assets/apps/dashboard/src/Components/Content/Welcome.js
index 2151bfb30c..8b05b6f42c 100644
--- a/assets/apps/dashboard/src/Components/Content/Welcome.js
+++ b/assets/apps/dashboard/src/Components/Content/Welcome.js
@@ -5,15 +5,13 @@ import { LucidePanelsTopLeft } from 'lucide-react';
import Card from '../../Layout/Card';
import { NEVE_HAS_PRO } from '../../utils/constants';
import Link from '../Common/Link';
-import ModuleCard from '../ModuleCard';
-import ModuleGrid from './ModuleGrid';
import { TransitionWrapper } from '../Common/TransitionWrapper';
+import ModuleGrid from './ModuleGrid';
export default () => (
{!NEVE_HAS_PRO && }
- {/* */}
);
@@ -29,11 +27,3 @@ const CustomizerShortcutsCard = () => (
);
-
-// const OldModuleGrid = () => (
-//
-// {Object.entries(neveDash.modules).map(([slug, moduleData]) => (
-//
-// ))}
-//
-// );