'use client'; import React from 'react'; import { useTranslation } from '@alga-psa/ui/lib/i18n/client'; // OSS stub implementation for Settings Extensions feature function EnterpriseFeatureStub({ featureKey, defaultFeature }: { featureKey: string; defaultFeature: string }) { const { t } = useTranslation('msp/extensions'); return (
{t('enterpriseFeature.description', { defaultValue: '{{feature}} require Enterprise Edition. Please upgrade to access this feature.', feature: t(featureKey, { defaultValue: defaultFeature }) })}