Index: src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/ask-question-shared/ask-question-shared.component.html
===================================================================
--- src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/ask-question-shared/ask-question-shared.component.html	(revision 32cd040c84d3907c2311e7269d28ceb88f895897)
+++ src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/ask-question-shared/ask-question-shared.component.html	(revision 15a34a3f0bbc004a40a56c148aae0401f121028c)
@@ -1,3 +1,3 @@
-<form class="example-container" [formGroup]="questionFormGroup">
+<form [formGroup]="questionFormGroup">
   <mat-form-field class="full-width margin-bottom-sm" appearance="fill" appHandleInputFormErrors>
     <mat-label>{{ 'ask-question-question-title' | translate }}</mat-label>
Index: src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/ask-question-shared/ask-question-shared.component.ts
===================================================================
--- src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/ask-question-shared/ask-question-shared.component.ts	(revision 32cd040c84d3907c2311e7269d28ceb88f895897)
+++ src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/ask-question-shared/ask-question-shared.component.ts	(revision 15a34a3f0bbc004a40a56c148aae0401f121028c)
@@ -1,5 +1,4 @@
 import { Component, EventEmitter, OnInit, Output } from '@angular/core';
 import { FormControl, FormGroup, Validators } from '@angular/forms';
-import { Router } from '@angular/router';
 
 import { CategoryFacadeService } from 'src/app/core/state/category-facade.service';
@@ -22,5 +21,5 @@
   public categoriesList$ = this.categoriesFacade.getCategories();
 
-  constructor(private categoriesFacade: CategoryFacadeService, private router: Router) {
+  constructor(private categoriesFacade: CategoryFacadeService) {
     this.questionFormGroup = new FormGroup({
       title: this.titleForm,
@@ -33,6 +32,5 @@
 
   public askQuestionEmit(): void {
-    const body = new AskQuestionRequest(this.titleForm.value, this.textForm.value, this.categoriesForm.value);
-    this.askQuestion.emit(body);
+    this.askQuestion.emit(new AskQuestionRequest(this.titleForm.value, this.textForm.value, this.categoriesForm.value));
   }
 }
