fix fmt in billing service

This commit is contained in:
Simon Larsen 2023-06-09 13:43:25 +01:00
parent 8110cca424
commit 4b49297e2a
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE
2 changed files with 3 additions and 2 deletions

View File

@ -543,7 +543,9 @@ export class BillingService {
public static async voidInvoice(
invoiceId: string
): Promise<Stripe.Invoice> {
const invoice: Stripe.Invoice = await this.stripe.invoices.voidInvoice(invoiceId);
const invoice: Stripe.Invoice = await this.stripe.invoices.voidInvoice(
invoiceId
);
return invoice;
}

View File

@ -59,7 +59,6 @@ import './Jobs/StatusPageOwners/SendCreatedResourceEmail';
import './Jobs/StatusPageOwners/SendOwnerAddedEmail';
import './Jobs/StatusPageOwners/SendAnnouncementCreatedEmail';
const APP_NAME: string = 'workers';
const app: ExpressApplication = Express.getExpressApp();