Skip to content

Commit

Permalink
Fix TS issue "Type error: Module '"/vercel/path1/src/modules/core/sen…
Browse files Browse the repository at this point in the history
…try/init"' has no default export."
  • Loading branch information
Vadorequest committed Jun 24, 2021
1 parent 31187da commit 910895a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/core/githubActions/dispatchWorkflow.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createLogger } from '@/modules/core/logging/logger';
import { ALERT_TYPES } from '@/modules/core/sentry/config';
import Sentry from '../sentry/init';
import * as Sentry from '@sentry/node';
import { WorkflowsAPIResponse } from './types/WorkflowsAPIResponse';

const fileLabel = 'modules/core/githubActions/dispatchWorkflow';
Expand Down
2 changes: 1 addition & 1 deletion src/modules/core/githubActions/dispatchWorkflowByPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
GITHUB_REPO_NAME,
} from '@/app/constants';
import { createLogger } from '@/modules/core/logging/logger';
import Sentry from '../sentry/init';
import * as Sentry from '@sentry/node';
import dispatchWorkflow from './dispatchWorkflow';
import { WorkflowsAPIResponse } from './types/WorkflowsAPIResponse';

Expand Down

0 comments on commit 910895a

Please sign in to comment.