Skip to content

Commit

Permalink
Fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaFomina committed Jan 8, 2024
1 parent d59af71 commit 0e345f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/application/services/useErrorCatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ export const useErrorCatcher = createSharedComposable(() => {
/**
* Hawk catcher instance
*/
let hawk: typeof HawkCatcher | undefined;
let hawk: HawkCatcher | undefined;

/**
* Initializes error catcher
*
* @param app - vue app instance
*/
function init(app: App) {
new HawkCatcher({
function init(app: App): void {
hawk = new HawkCatcher({
token: import.meta.env.VITE_HAWK_TOKEN,
vue: app,
release: window.HAWK_RELEASE,
Expand Down

0 comments on commit 0e345f3

Please sign in to comment.