diff --git a/app/assets/javascripts/discourse/app/templates/application.hbs b/app/assets/javascripts/discourse/app/templates/application.hbs
index f7dfdd9a89c..2f44d80833f 100644
--- a/app/assets/javascripts/discourse/app/templates/application.hbs
+++ b/app/assets/javascripts/discourse/app/templates/application.hbs
@@ -1,5 +1,5 @@
{{d-document}}
-{{plugin-outlet name="above-site-header"}}
+{{plugin-outlet name="above-site-header" tagName=""}}
{{site-header canSignUp=canSignUp
showCreateAccount=(route-action "showCreateAccount")
showLogin=(route-action "showLogin")
@@ -8,10 +8,10 @@
toggleAnonymous=(route-action "toggleAnonymous")
logout=(route-action "logout")}}
-{{plugin-outlet name="below-site-header" args=(hash currentPath=router._router.currentPath)}}
+{{plugin-outlet name="below-site-header" tagName="" args=(hash currentPath=router._router.currentPath)}}
- {{plugin-outlet name="above-main-container"}}
+ {{plugin-outlet name="above-main-container" tagName=""}}
{{#if showTop}}
{{custom-html name="top"}}
@@ -20,17 +20,17 @@
{{pwa-install-banner}}
{{global-notice}}
{{create-topics-notice}}
- {{plugin-outlet name="top-notices" args=(hash currentPath=router._router.currentPath)}}
+ {{plugin-outlet name="top-notices" tagName="" args=(hash currentPath=router._router.currentPath)}}
{{outlet}}
{{outlet "user-card"}}
-{{plugin-outlet name="above-footer" args=(hash showFooter=showFooter)}}
+{{plugin-outlet name="above-footer" tagName="" args=(hash showFooter=showFooter)}}
{{#if showFooter}}
{{custom-html name="footer" triggerAppEvent="true"}}
{{/if}}
-{{plugin-outlet name="below-footer" args=(hash showFooter=showFooter)}}
+{{plugin-outlet name="below-footer" tagName="" args=(hash showFooter=showFooter)}}
{{outlet "modal"}}
{{topic-entrance}}