setIsOpen(false)}
- button={button}
- anchorPosition="downCenter"
- >
-
-
- {i18n.translate('xpack.fleet.integrations.deploymentDescription', {
- defaultMessage:
- 'Send data to Elastic from your applications by referencing your deployment.',
- })}
-
-
-
-
-
-
-
-
-
- {(copy) => (
-
- )}
-
-
-
-
- {management}
-
-
-
- );
-};
diff --git a/x-pack/plugins/fleet/public/applications/integrations/components/header/deployment_details.stories.tsx b/x-pack/plugins/fleet/public/applications/integrations/components/header/deployment_details.stories.tsx
deleted file mode 100644
index 5b311b3443e36..0000000000000
--- a/x-pack/plugins/fleet/public/applications/integrations/components/header/deployment_details.stories.tsx
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License
- * 2.0; you may not use this file except in compliance with the Elastic License
- * 2.0.
- */
-
-import React from 'react';
-import type { Meta } from '@storybook/react';
-import { EuiHeader } from '@elastic/eui';
-
-import { DeploymentDetails as ConnectedComponent } from './deployment_details';
-import type { Props as PureComponentProps } from './deployment_details.component';
-import { DeploymentDetails as PureComponent } from './deployment_details.component';
-
-export default {
- title: 'Sections/EPM/Deployment Details',
- description: '',
- decorators: [
- (storyFn) => {
- const sections = [{ items: [] }, { items: [storyFn()] }];
- return