Skip to content

Commit

Permalink
More linters
Browse files Browse the repository at this point in the history
  • Loading branch information
graywolf336 committed Feb 1, 2023
1 parent 350d333 commit f822286
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/meteor/app/apps/server/marketplace/appInstall.ts
Expand Up @@ -16,11 +16,15 @@ export async function notifyAppInstall(marketplaceBaseUrl: string, action: insta
headers = {
Authorization: `Bearer ${token}`,
};

// eslint-disable-next-line no-empty
} catch {}

let siteUrl = '';
try {
siteUrl = settings.get<string>('Site_Url');

// eslint-disable-next-line no-empty
} catch {}

const data = {
Expand All @@ -40,5 +44,7 @@ export async function notifyAppInstall(marketplaceBaseUrl: string, action: insta
headers,
data,
});

// eslint-disable-next-line no-empty
} catch {}
}

0 comments on commit f822286

Please sign in to comment.