diff --git a/assets/js/modules/analytics-4/components/audience-segmentation/dashboard/NoAudienceBannerWidget/ActionContent.js b/assets/js/modules/analytics-4/components/audience-segmentation/dashboard/NoAudienceBannerWidget/ActionContent.js
deleted file mode 100644
index d7686f47c3b..00000000000
--- a/assets/js/modules/analytics-4/components/audience-segmentation/dashboard/NoAudienceBannerWidget/ActionContent.js
+++ /dev/null
@@ -1,101 +0,0 @@
-/**
- * ActionContent component.
- *
- * Site Kit by Google, Copyright 2024 Google LLC
- *
- * 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
- *
- * https://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.
- */
-
-/**
- * External dependencies
- */
-import PropTypes from 'prop-types';
-
-/**
- * WordPress dependencies
- */
-import { createInterpolateElement } from '@wordpress/element';
-import { __ } from '@wordpress/i18n';
-
-/**
- * Internal dependencies
- */
-import { useDispatch, useSelect } from 'googlesitekit-data';
-import Link from '../../../../../../components/Link';
-import { CORE_LOCATION } from '../../../../../../googlesitekit/datastore/location/constants';
-import { CORE_SITE } from '../../../../../../googlesitekit/datastore/site/constants';
-import useViewOnly from '../../../../../../hooks/useViewOnly';
-
-export default function ActionContent( { hasConfigurableAudiences } ) {
- const isViewOnly = useViewOnly();
-
- const settingsURL = useSelect( ( select ) =>
- select( CORE_SITE ).getAdminURL( 'googlesitekit-settings' )
- );
-
- const { navigateTo } = useDispatch( CORE_LOCATION );
-
- function hideAudiencesWidget() {
- // TODO: dismiss item...
- }
-
- if ( isViewOnly ) {
- if ( ! hasConfigurableAudiences ) {
- return (
-
- { createInterpolateElement(
- __(
- 'You can temporarily hide this feature until groups are available.',
- 'google-site-kit'
- ),
- {
- a: (
-
- ),
- }
- ) }
-
- );
-}
-
-ActionContent.propTypes = {
- hasConfigurableAudiences: PropTypes.bool.isRequired,
-};
diff --git a/assets/js/modules/analytics-4/components/audience-segmentation/dashboard/NoAudienceBannerWidget/DescriptionContent.js b/assets/js/modules/analytics-4/components/audience-segmentation/dashboard/NoAudienceBannerWidget/DescriptionContent.js
deleted file mode 100644
index bfb9161ffdb..00000000000
--- a/assets/js/modules/analytics-4/components/audience-segmentation/dashboard/NoAudienceBannerWidget/DescriptionContent.js
+++ /dev/null
@@ -1,134 +0,0 @@
-/**
- * DescriptionContent component.
- *
- * Site Kit by Google, Copyright 2024 Google LLC
- *
- * 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
- *
- * https://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.
- */
-
-/**
- * External dependencies
- */
-import PropTypes from 'prop-types';
-
-/**
- * WordPress dependencies
- */
-import { createInterpolateElement } from '@wordpress/element';
-import { __ } from '@wordpress/i18n';
-
-/**
- * Internal dependencies
- */
-import { useDispatch, useSelect } from 'googlesitekit-data';
-import Link from '../../../../../../components/Link';
-import { CORE_SITE } from '../../../../../../googlesitekit/datastore/site/constants';
-import { CORE_UI } from '../../../../../../googlesitekit/datastore/ui/constants';
-import { CORE_USER } from '../../../../../../googlesitekit/datastore/user/constants';
-import { AUDIENCE_SELECTION_PANEL_OPENED_KEY } from '../AudienceSelectionPanel/constants';
-import useViewOnly from '../../../../../../hooks/useViewOnly';
-
-export default function DescriptionContent( { hasConfigurableAudiences } ) {
- const isViewOnly = useViewOnly();
-
- const hasConfiguredAudiences = useSelect(
- ( select ) => select( CORE_USER ).getConfiguredAudiences().length > 0
- );
-
- const didSetAudiences = useSelect( ( select ) =>
- select( CORE_USER ).didSetAudiences()
- );
-
- const audienceLearnMoreURL = useSelect( ( select ) =>
- select( CORE_SITE ).getGoogleSupportURL( {
- path: '/analytics/answer/12799087',
- } )
- );
-
- const { setValue } = useDispatch( CORE_UI );
-
- if ( ! hasConfigurableAudiences ) {
- if ( ! hasConfiguredAudiences && ( isViewOnly || ! didSetAudiences ) ) {
- return (
-
- { createInterpolateElement(
- __(
- 'There are no visitor groups available. Learn more about how to group site visitors in Analytics.',
- 'google-site-kit'
- ),
- {
- a: (
-
- ),
- }
- ) }
-
- );
- }
-
- // The user either has configured audiences (which no longer exist), or is an authenticated user who has previously populated their configured audiences.
- return (
-
- { createInterpolateElement(
- __(
- 'It looks like your visitor groups aren’t available anymore. Learn more about how to group site visitors in Analytics.',
- 'google-site-kit'
- ),
- {
- a: (
-
- ),
- }
- ) }
-
- );
- }
-
- return (
-
- { createInterpolateElement(
- __(
- 'It looks like your visitor groups aren’t available anymore. Select other groups.',
- 'google-site-kit'
- ),
- {
- a: (
-
- setValue(
- AUDIENCE_SELECTION_PANEL_OPENED_KEY,
- true
- )
- }
- />
- ),
- }
- ) }
-