Reformat code

This commit is contained in:
Toast 2025-02-04 14:17:19 +01:00
parent 4b10d3d056
commit 093180f5b2
17 changed files with 101 additions and 104 deletions

View file

@ -1,6 +1,6 @@
import { TestBed } from '@angular/core/testing';
import {TestBed} from '@angular/core/testing';
import { ShowsApiService } from './shows-api.service';
import {ShowsApiService} from './shows-api.service';
describe('ShowsApiService', () => {
let service: ShowsApiService;

View file

@ -24,7 +24,7 @@ export class ShowsApiService {
}
getShow(id: string): Observable<ShowsApiIdResponse> {
return this.http.get<ShowsApiIdResponse>(this.showsEndpoint + "id/" + id )
return this.http.get<ShowsApiIdResponse>(this.showsEndpoint + "id/" + id)
}
sendShow(newShow: {}) {

View file

@ -1,6 +1,6 @@
import { TestBed } from '@angular/core/testing';
import {TestBed} from '@angular/core/testing';
import { ToastService } from './toast.service';
import {ToastService} from './toast.service';
describe('ToastService', () => {
let service: ToastService;

View file

@ -1,4 +1,4 @@
import { Injectable } from '@angular/core';
import {Injectable} from '@angular/core';
import {Toast} from '../../interfaces/toast';
@Injectable({