feat(services): add services menu item to sidebar and update related components

This commit is contained in:
hamed
2026-07-15 16:35:02 +03:30
parent 704e69f05f
commit 5c15a4dd7f
5 changed files with 37 additions and 11 deletions
+3 -6
View File
@@ -6,7 +6,6 @@ import {
EllipsisHorizontalIcon, CheckCircleIcon, XCircleIcon, ChevronRightIcon,
XMarkIcon, UsersIcon, ClockIcon,
} from '@heroicons/react/24/outline';
import SettingsLayout from '../components/layout/SettingsLayout';
import { useForm } from 'react-hook-form';
import { zodResolver } from '@hookform/resolvers/zod';
import { z } from 'zod';
@@ -611,10 +610,8 @@ function ClinicServicesPageInner() {
export default function ClinicServicesPage() {
return (
<SettingsLayout active="services">
<FeatureGate feature="services">
<ClinicServicesPageInner />
</FeatureGate>
</SettingsLayout>
<FeatureGate feature="services">
<ClinicServicesPageInner />
</FeatureGate>
);
}