diff --git a/src/app/components/home/new-landing/new-landing.component.ts b/src/app/components/home/new-landing/new-landing.component.ts
index ed2468db50b8a7258fb916781d6cbe9545259783..872b9942581f48341ad734a1f82280f8c1546a30 100644
--- a/src/app/components/home/new-landing/new-landing.component.ts
+++ b/src/app/components/home/new-landing/new-landing.component.ts
@@ -14,7 +14,7 @@ import { Router } from '@angular/router';
 export class NewLandingComponent implements OnInit {
 
   user: User;
-  demoId = 88992370;
+  demoId = 88992370; // online 95680586, change before merging
 
   constructor(public authenticationService: AuthenticationService,
               private router: Router,
diff --git a/src/app/components/shared/room-join/room-join.component.ts b/src/app/components/shared/room-join/room-join.component.ts
index 62c27ad940393b5d9bbbd8156c17abbfeebe48b3..b639d76c7461f72a9bdec363499ad82a85e39659 100644
--- a/src/app/components/shared/room-join/room-join.component.ts
+++ b/src/app/components/shared/room-join/room-join.component.ts
@@ -6,8 +6,7 @@ import { RegisterErrorStateMatcher } from '../../home/_dialogs/register/register
 import { FormControl, FormGroupDirective, NgForm, Validators } from '@angular/forms';
 import { ErrorStateMatcher } from '@angular/material';
 import { NotificationService } from '../../../services/util/notification.service';
-import {LanguageService} from "../../../services/util/language.service";
-import {TranslateService} from "@ngx-translate/core";
+import { TranslateService } from '@ngx-translate/core';
 
 export class JoinErrorStateMatcher implements ErrorStateMatcher {
   isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {
@@ -24,7 +23,7 @@ export class JoinErrorStateMatcher implements ErrorStateMatcher {
 export class RoomJoinComponent implements OnInit {
 
   room: Room;
-  demoId = '26973546'; // online 95680586, change before merging
+  demoId = '26973546';
 
   roomFormControl = new FormControl('', [Validators.required, Validators.minLength(8)]);