diff --git a/console/src/app/app.component.html b/console/src/app/app.component.html
index 755465b1bb..9b6b69ec1a 100644
--- a/console/src/app/app.component.html
+++ b/console/src/app/app.component.html
@@ -2,7 +2,7 @@
diff --git a/console/src/app/pages/users/user-detail/user-detail/user-mfa/user-mfa.component.html b/console/src/app/pages/users/user-detail/user-detail/user-mfa/user-mfa.component.html
index 6953ee6a9d..5a2c11e77a 100644
--- a/console/src/app/pages/users/user-detail/user-detail/user-mfa/user-mfa.component.html
+++ b/console/src/app/pages/users/user-detail/user-detail/user-mfa/user-mfa.component.html
@@ -18,8 +18,7 @@
|
-
+
diff --git a/console/src/app/services/auth.service.ts b/console/src/app/services/auth.service.ts
index 850aabcf1f..f1eecdf52f 100644
--- a/console/src/app/services/auth.service.ts
+++ b/console/src/app/services/auth.service.ts
@@ -65,7 +65,6 @@ export class AuthService {
switchMap(() => from(this.userService.GetMyzitadelPermissions())),
map(rolesResp => rolesResp.toObject().permissionsList),
).subscribe(roles => {
- console.log(roles);
this.zitadelPermissions.next(roles);
});
}
diff --git a/console/src/app/services/grpc.service.ts b/console/src/app/services/grpc.service.ts
index edfc66b6e6..89355e3c3d 100644
--- a/console/src/app/services/grpc.service.ts
+++ b/console/src/app/services/grpc.service.ts
@@ -28,10 +28,7 @@ export class GrpcService {
public async loadAppEnvironment(): Promise
{
return this.http.get('./assets/environment.json')
.toPromise().then((data: any) => {
- console.log('init grpc');
-
if (data && data.authServiceUrl && data.mgmtServiceUrl && data.issuer) {
- console.log('init grpc promiseclients');
this.auth = new AuthServicePromiseClient(data.authServiceUrl);
this.mgmt = new ManagementServicePromiseClient(data.mgmtServiceUrl);
this.admin = new AdminServicePromiseClient(data.adminServiceUrl);