From d7f7c1dbb01bc46fecdce703b772279b3848827b Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 21:18:43 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in 93a9078 according to the output from Prettier. Details: https://github.com/Resgrid/Dispatch/pull/53 --- .../shared/voice-footer/voice-footer.component.ts | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/app/features/voice/shared/voice-footer/voice-footer.component.ts b/src/app/features/voice/shared/voice-footer/voice-footer.component.ts index 2451b7b..55b7202 100644 --- a/src/app/features/voice/shared/voice-footer/voice-footer.component.ts +++ b/src/app/features/voice/shared/voice-footer/voice-footer.component.ts @@ -6,16 +6,9 @@ import { Component, OnInit } from "@angular/core"; styleUrls: ["./voice-footer.component.scss"], }) export class VoiceFooterComponent implements OnInit { + constructor() {} - constructor() { + ngOnInit(): void {} - } - - ngOnInit(): void { - - } - - ngOnDestroy(): void { - - } + ngOnDestroy(): void {} }