import { useParams } from 'common' import Image from 'next/image' import { useIsAdvisorRulesEnabled } from './FeaturePreviewContext' import { InlineLink } from '@/components/ui/InlineLink' import { BASE_PATH } from '@/lib/constants' export const AdvisorRulesPreview = () => { const { ref } = useParams() const isAdvisorRulesEnabled = useIsAdvisorRulesEnabled() return (

Disable specific Advisor categories or rules to prevent them from showing up in Advisor reports or email notifications. This could be useful for rules that might not be applicable to your project.

api-docs-side-panel-preview

Enabling this preview will:

) }