diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts index 6267b9ed1..132a8a24b 100644 --- a/frontend/src/app/dashboard/dashboard.component.ts +++ b/frontend/src/app/dashboard/dashboard.component.ts @@ -259,6 +259,6 @@ export class DashboardComponent implements OnInit { try { document.cookie = `lang=${language}; expires=Thu, 18 Dec 2050 12:00:00 UTC; path=/`; } catch (e) { } - this.document.location.href = (language === 'en' ? '/' : '/' + language); + this.document.location.href = `${language === 'en' ? '' : '/' + language}/${this.stateService.network}`; } }