diff --git a/app/assets/javascripts/discourse/app/components/categories-only.hbs b/app/assets/javascripts/discourse/app/components/categories-only.hbs
index e847fb9cb6c..f546cbbe9d3 100644
--- a/app/assets/javascripts/discourse/app/components/categories-only.hbs
+++ b/app/assets/javascripts/discourse/app/components/categories-only.hbs
@@ -4,29 +4,45 @@
>
{{#if this.categories}}
{{#if this.filteredCategories}}
-
-
-
- {{i18n "categories.category"}} |
- {{i18n "categories.topics"}} |
- {{#if this.showTopics}}
- {{i18n "categories.latest"}} |
- {{/if}}
-
-
-
- {{#each this.categories as |category|}}
-
- {{/each}}
-
-
+ {{#if this.site.mobileView}}
+
+
+ {{#each this.filteredCategories as |c|}}
+
+ {{/each}}
+
+
+ {{else}}
+
+
+
+ {{i18n "categories.category"}} |
+ {{i18n "categories.topics"}} |
+ {{#if this.showTopics}}
+ {{i18n "categories.latest"}} |
+ {{/if}}
+
+
+
+ {{#each this.categories as |category|}}
+
+ {{/each}}
+
+
+ {{/if}}
{{/if}}
{{#if this.mutedCategories}}
@@ -41,34 +57,50 @@
{{d-icon this.mutedToggleIcon}}
{{/if}}
-
-
-
- {{i18n "categories.category"}} |
- {{i18n "categories.topics"}} |
- {{#if this.showTopics}}
- {{i18n "categories.latest"}} |
- {{/if}}
-
-
-
- {{#each this.categories as |category|}}
+ {{#if this.site.mobileView}}
+
+ {{#each this.mutedCategories as |c|}}
{{/each}}
-
-
+
+ {{else}}
+
+
+
+ {{i18n "categories.category"}} |
+ {{i18n "categories.topics"}} |
+ {{#if this.showTopics}}
+ {{i18n "categories.latest"}} |
+ {{/if}}
+
+
+
+ {{#each this.categories as |category|}}
+
+ {{/each}}
+
+
+ {{/if}}
{{/if}}
{{/if}}
diff --git a/app/assets/javascripts/discourse/app/templates/mobile/components/categories-only.hbs b/app/assets/javascripts/discourse/app/templates/mobile/components/categories-only.hbs
deleted file mode 100644
index 0b820b7a736..00000000000
--- a/app/assets/javascripts/discourse/app/templates/mobile/components/categories-only.hbs
+++ /dev/null
@@ -1,38 +0,0 @@
-{{#if this.categories}}
- {{#if this.filteredCategories}}
-
-
- {{#each this.filteredCategories as |c|}}
-
- {{/each}}
-
-
- {{/if}}
-
- {{#if this.mutedCategories}}
-
- {{/if}}
-{{/if}}
\ No newline at end of file