diff --git a/packages/editor-ui/src/plugins/i18n/locales/en.json b/packages/editor-ui/src/plugins/i18n/locales/en.json
index b78516a1b7..cc1a09a0bb 100644
--- a/packages/editor-ui/src/plugins/i18n/locales/en.json
+++ b/packages/editor-ui/src/plugins/i18n/locales/en.json
@@ -1566,10 +1566,6 @@
"workflows.empty.heading.userNotSetup": "👋 Welcome!",
"workflows.empty.description": "Create your first workflow",
"workflows.empty.startFromScratch": "Start from scratch",
- "workflows.empty.browseTemplates": "Browse templates",
- "workflows.empty.viewDemo": "View a demo workflow",
- "workflows.viewDemoNotice": "Learn automation key concepts with our demo workflow",
- "workflows.viewDemo": "View demo workflow",
"workflows.shareModal.title": "Share '{name}'",
"workflows.shareModal.select.placeholder": "Add users...",
"workflows.shareModal.list.delete": "Remove access",
diff --git a/packages/editor-ui/src/views/WorkflowsView.vue b/packages/editor-ui/src/views/WorkflowsView.vue
index 5311c1c6bb..dec78a5880 100644
--- a/packages/editor-ui/src/views/WorkflowsView.vue
+++ b/packages/editor-ui/src/views/WorkflowsView.vue
@@ -11,17 +11,6 @@
@click:add="addWorkflow"
@update:filters="filters = $event"
>
-
-
- {{ $locale.baseText('workflows.viewDemoNotice') }}
-
-
-
- {{ $locale.baseText('workflows.viewDemo') }}
-
-
-
-
-
-
-
- {{ $locale.baseText('workflows.empty.viewDemo') }}
-
-
@@ -209,9 +187,6 @@ const WorkflowsView = mixins(showMessage, debounceHelper).extend({
source: 'Workflows list',
});
},
- goToTemplates() {
- this.$router.push({ name: VIEWS.TEMPLATES });
- },
async initialize() {
await Promise.all([
this.usersStore.fetchUsers(),