From 7ef7770a7e5ffb279e0f944b61789b9360e83e7f Mon Sep 17 00:00:00 2001 From: dan13ram Date: Mon, 10 Oct 2022 21:35:57 +0530 Subject: [PATCH] format fix --- src/graphql/health.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphql/health.ts b/src/graphql/health.ts index d6080c4..64d88ff 100644 --- a/src/graphql/health.ts +++ b/src/graphql/health.ts @@ -49,7 +49,7 @@ class SubgraphHealthStore { } } -const HealthStoreSingleton = (function() { +const HealthStoreSingleton = (function () { let instance: SubgraphHealthStore; function createInstance() { @@ -57,7 +57,7 @@ const HealthStoreSingleton = (function() { } return { - getInstance: function() { + getInstance: function () { if (!instance) { instance = createInstance(); }