diff --git a/src/app/views/account/account.component.ts b/src/app/views/account/account.component.ts
index 0ff8d00..ea66f2a 100644
--- a/src/app/views/account/account.component.ts
+++ b/src/app/views/account/account.component.ts
@@ -1,6 +1,5 @@
import { Component } from '@angular/core';
import {ButtonComponent} from "../../libraries/components/button/button.component";
-import {ButtonModel} from "../../libraries/components/button/models/button.model";
import {DashboardComponent} from "../dashboard/dashboard.component";
import {NgIf} from "@angular/common";
import {LoginComponent} from "../login/login.component";
diff --git a/src/app/views/beta/auth-form/auth-form.component.ts b/src/app/views/beta/auth-form/auth-form.component.ts
index 99255ea..684ac93 100644
--- a/src/app/views/beta/auth-form/auth-form.component.ts
+++ b/src/app/views/beta/auth-form/auth-form.component.ts
@@ -1,4 +1,4 @@
-import { Component } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
import {LoginComponent} from "../../login/login.component";
import {NgIf} from "@angular/common";
import {RegisterComponent} from "../../register/register.component";
@@ -15,7 +15,7 @@ import {AuthService} from "../../../services/auth.service";
templateUrl: './auth-form.component.html',
styleUrl: './auth-form.component.scss'
})
-export class AuthFormComponent {
+export class AuthFormComponent implements OnInit {
constructor(private authService: AuthService) {
}
diff --git a/src/app/views/dashboard/dashboard.component.html b/src/app/views/dashboard/dashboard.component.html
index c38c3b1..51dbcc8 100644
--- a/src/app/views/dashboard/dashboard.component.html
+++ b/src/app/views/dashboard/dashboard.component.html
@@ -12,10 +12,13 @@