import { NotificationsPopover } from '@kit/notifications/components'; import featuresFlagConfig from '~/config/feature-flags.config'; export function TeamAccountNotifications(params: { userId: string; accountId: string; }) { if (!featuresFlagConfig.enableNotifications) { return null; } return ( ); }