diff --git a/ui/app/components/dashboard/overview.hbs b/ui/app/components/dashboard/overview.hbs
index 0d56a10077..91032e0782 100644
--- a/ui/app/components/dashboard/overview.hbs
+++ b/ui/app/components/dashboard/overview.hbs
@@ -32,7 +32,6 @@
{{/if}}
diff --git a/ui/app/components/dashboard/survey-link-text.hbs b/ui/app/components/dashboard/survey-link-text.hbs
deleted file mode 100644
index 7d53a4dd05..0000000000
--- a/ui/app/components/dashboard/survey-link-text.hbs
+++ /dev/null
@@ -1,14 +0,0 @@
-{{!
- Copyright (c) HashiCorp, Inc.
- SPDX-License-Identifier: BUSL-1.1
-~}}
-
-
-
- Don't see what you're looking for on this page? Let us know via our
-
- feedback form
-
- .
-
-
\ No newline at end of file
diff --git a/ui/tests/integration/components/dashboard/overview-test.js b/ui/tests/integration/components/dashboard/overview-test.js
index 0cb9df8474..986b235ec6 100644
--- a/ui/tests/integration/components/dashboard/overview-test.js
+++ b/ui/tests/integration/components/dashboard/overview-test.js
@@ -265,9 +265,6 @@ module('Integration | Component | dashboard/overview', function (hooks) {
'Explore the features of Vault and learn advance practices with the following tutorials and documentation.'
);
assert.dom('[data-test-learn-more-links] a').exists({ count: 3 });
- assert
- .dom('[data-test-feedback-form]')
- .hasText("Don't see what you're looking for on this page? Let us know via our feedback form .");
});
test('shows the learn more card on enterprise', async function (assert) {
this.version.features = [
@@ -284,9 +281,6 @@ module('Integration | Component | dashboard/overview', function (hooks) {
'Explore the features of Vault and learn advance practices with the following tutorials and documentation.'
);
assert.dom('[data-test-learn-more-links] a').exists({ count: 4 });
- assert
- .dom('[data-test-feedback-form]')
- .hasText("Don't see what you're looking for on this page? Let us know via our feedback form .");
});
});
});