small switch
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
RakVhalate 2022-10-22 22:30:31 +10:00
parent 6e687f351e
commit 6c26caab00
6 changed files with 2 additions and 3 deletions

Binary file not shown.

View File

@ -10,7 +10,7 @@ import { BoardsComponent } from './boards/boards.component';
import { NotFoundComponent } from './not-found/not-found.component';
import { ApiChatService } from './services/api-chat.service';
import { FormsModule } from '@angular/forms';
import { SendPostComponent } from './boards/send-post/send-post.component';
import { SendPostComponent } from './send-post/send-post.component';
import { PostComponent } from './boards/post/post.component'
const appRoutes: Routes = [

View File

@ -1,6 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { ApiChatService } from '../../services/api-chat.service';
import { ApiChatService } from '../services/api-chat.service';
@Component({
selector: 'app-send-post',