From df048c1352995d646aad301c39076a530cc94baf Mon Sep 17 00:00:00 2001 From: thedrewen Date: Tue, 4 Nov 2025 18:13:17 +0100 Subject: [PATCH] fix(status): remove unnecessary quotes from host and name properties --- src/services/status.service.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/services/status.service.ts b/src/services/status.service.ts index 32bc724..09ce0da 100644 --- a/src/services/status.service.ts +++ b/src/services/status.service.ts @@ -15,16 +15,16 @@ export class StatusService { public hosts: Host[] = [ { - 'host': 'https://protojx.com', - 'name': 'Protojx Website', + host: 'https://protojx.com', + name: 'Protojx Website', alive: false, ping_type: 'website', type: 'website', notify: false }, { - 'host': 'https://manager.protojx.com', - 'name': 'Espace Client', + host: 'https://manager.protojx.com', + name: 'Espace Client', alive: false, ping_type: 'website', type: 'website', @@ -297,10 +297,10 @@ export class StatusService { (text) => text.setContent('## ' + sectionData.title + '\n' + hostTexts.filter((v) => v.type == sectionData.type).map((v) => v.value).join('\n')) ) - .setThumbnailAccessory( - (acc) => - acc.setURL(sectionData.thumbnail) - ) + .setThumbnailAccessory( + (acc) => + acc.setURL(sectionData.thumbnail) + ) ) });