Skip to content

Commit

Permalink
fix: modules header in dashboard page
Browse files Browse the repository at this point in the history
  • Loading branch information
abaicus committed Jan 28, 2025
1 parent 2e249d6 commit d48dab2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion assets/apps/dashboard/src/Components/Content/ModuleGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
NEVE_HAS_PRO,
NEVE_MODULE_ICON_MAP,
NEVE_STORE,
NEVE_IS_WHITELABEL,
} from '../../utils/constants';
import Link from '../Common/Link';
import Pill from '../Common/Pill';
Expand Down Expand Up @@ -130,7 +131,9 @@ const ModulesHeader = () => {
return (
<div className="flex items-center justify-between">
<h2 className="text-lg font-semibold">
{__('Neve Pro Modules', 'neve')}
{NEVE_IS_WHITELABEL
? __('Manage Modules', 'neve')
: __('Neve Pro Modules', 'neve')}
</h2>
{!isLicenseValid && (
<Link
Expand Down

0 comments on commit d48dab2

Please sign in to comment.