Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dan13ram committed Oct 10, 2022
1 parent 16988a2 commit 7ef7770
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graphql/health.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ class SubgraphHealthStore {
}
}

const HealthStoreSingleton = (function() {
const HealthStoreSingleton = (function () {
let instance: SubgraphHealthStore;

function createInstance() {
return new SubgraphHealthStore();
}

return {
getInstance: function() {
getInstance: function () {
if (!instance) {
instance = createInstance();
}
Expand Down

0 comments on commit 7ef7770

Please sign in to comment.