- )}
-
-
- );
-};
-
-export default MetaPilotDescriptionAlert;
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/MetaPilot/MetaPilotDescriptionAlert/MetaPilotDescriptionAlert.interface.ts b/openmetadata-ui/src/main/resources/ui/src/components/MetaPilot/MetaPilotDescriptionAlert/MetaPilotDescriptionAlert.interface.ts
deleted file mode 100644
index b4746069313..00000000000
--- a/openmetadata-ui/src/main/resources/ui/src/components/MetaPilot/MetaPilotDescriptionAlert/MetaPilotDescriptionAlert.interface.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Copyright 2024 Collate.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { Suggestion } from '../../../generated/entity/feed/suggestion';
-
-export interface MetaPilotDescriptionAlertProps {
- showHeading?: boolean;
- suggestion: Suggestion;
- hasEditAccess?: boolean;
-}
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/MetaPilot/MetaPilotPopoverContent/MetaPilotPopoverContent.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/MetaPilot/MetaPilotPopoverContent/MetaPilotPopoverContent.component.tsx
deleted file mode 100644
index 3a4da5bb336..00000000000
--- a/openmetadata-ui/src/main/resources/ui/src/components/MetaPilot/MetaPilotPopoverContent/MetaPilotPopoverContent.component.tsx
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * Copyright 2024 Collate.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import { CheckOutlined, CloseOutlined } from '@ant-design/icons';
-import { Button, Card, Space, Typography } from 'antd';
-import React, { useLayoutEffect } from 'react';
-import { useTranslation } from 'react-i18next';
-import { ReactComponent as QuestionMarkIcon } from '../../../assets/svg/ic-question-mark.svg';
-import { ReactComponent as SuggestionsIcon } from '../../../assets/svg/ic-suggestions.svg';
-import RichTextEditorPreviewer from '../../common/RichTextEditor/RichTextEditorPreviewer';
-import { useMetaPilotContext } from '../MetaPilotProvider/MetaPilotProvider';
-import { SuggestionAction } from '../MetaPilotProvider/MetaPilotProvider.interface';
-import './metapilot-popover-content.less';
-import { MetaPilotPopoverContentProps } from './MetaPilotPopoverContent.interface';
-
-const MetaPilotPopoverContent = ({
- suggestion,
- hasEditAccess = false,
-}: MetaPilotPopoverContentProps) => {
- const { t } = useTranslation();
- const { acceptRejectSuggestion } = useMetaPilotContext();
-
- useLayoutEffect(() => {
- const element = document.querySelector('.has-suggestion');
- if (element) {
- element.scrollIntoView({ block: 'center', behavior: 'smooth' });
- }
- }, []);
-
- if (!suggestion) {
- return null;
- }
-
- return (
-
-
-