diff --git a/msa/pom.xml b/msa/pom.xml
index 495cf42c57..6bf4cd934d 100644
--- a/msa/pom.xml
+++ b/msa/pom.xml
@@ -134,7 +134,7 @@
4.2.1-latest
- false
+ true
diff --git a/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts b/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts
index dfeae2b227..33e5580453 100644
--- a/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts
+++ b/ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts
@@ -650,7 +650,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
private hideToolbarSetting(): boolean {
if (isDefined(this.dashboard.configuration?.settings?.hideToolbar)) {
- const canApplyHideSetting = !this.forceFullscreen || this.isMobileApp;
+ const canApplyHideSetting = !this.forceFullscreen || this.isMobileApp || this.isPublicUser();
return this.dashboard.configuration.settings.hideToolbar && canApplyHideSetting;
} else {
return false;