Skip to content

Commit abc19bf

Browse files
committed
Not sure why these errors didn't show in the watch task...
1 parent 9aeed68 commit abc19bf

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/github/createPRViewProvider.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import * as vscode from 'vscode';
7-
import { ChooseBaseRemoteAndBranchResult, ChooseCompareRemoteAndBranchResult, ChooseRemoteAndBranchArgs, CreateParamsNew, CreatePullRequestNew, RemoteInfo, TitleAndDescriptionArgs } from '../../common/views';
7+
import { RemoteInfo } from '../../common/types';
8+
import { ChooseBaseRemoteAndBranchResult, ChooseCompareRemoteAndBranchResult, ChooseRemoteAndBranchArgs, CreateParamsNew, CreatePullRequestNew, TitleAndDescriptionArgs } from '../../common/views';
89
import type { Branch, Ref } from '../api/api';
910
import { GitHubServerType } from '../common/authentication';
1011
import { emojify, ensureEmojis } from '../common/emoji';

webviews/common/createContextNew.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import { createContext } from 'react';
7-
import { ChooseBaseRemoteAndBranchResult, ChooseCompareRemoteAndBranchResult, ChooseRemoteAndBranchArgs, CreateParamsNew, CreatePullRequestNew, RemoteInfo, ScrollPosition, TitleAndDescriptionArgs, TitleAndDescriptionResult } from '../../common/views';
7+
import { RemoteInfo } from '../../common/types';
8+
import { ChooseBaseRemoteAndBranchResult, ChooseCompareRemoteAndBranchResult, ChooseRemoteAndBranchArgs, CreateParamsNew, CreatePullRequestNew, ScrollPosition, TitleAndDescriptionArgs, TitleAndDescriptionResult } from '../../common/views';
89
import { compareIgnoreCase } from '../../src/common/utils';
910
import { PreReviewState } from '../../src/github/views';
1011
import { getMessageHandler, MessageHandler, vscode } from './message';

webviews/createPullRequestViewNew/app.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
import React, { useCallback, useContext, useEffect, useRef, useState } from 'react';
77
import { render } from 'react-dom';
8-
import { CreateParamsNew, RemoteInfo } from '../../common/views';
8+
import { RemoteInfo } from '../../common/types';
9+
import { CreateParamsNew } from '../../common/views';
910
import { isITeam, MergeMethod } from '../../src/github/interface';
1011
import PullRequestContextNew from '../common/createContextNew';
1112
import { ErrorBoundary } from '../common/errorBoundary';

0 commit comments

Comments
 (0)