Skip to content

Commit a9f83a4

Browse files
committed
Fixes initial hasIntegrationsConnected check in Inspect view
1 parent 8e0eb67 commit a9f83a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/webviews/commitDetails/commitDetailsWebview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ interface Context {
166166
orgSettings: State['orgSettings'];
167167
source?: Sources;
168168
hasAccount: boolean | undefined;
169-
hasIntegrationsConnected: boolean;
169+
hasIntegrationsConnected: boolean | undefined;
170170
}
171171

172172
export class CommitDetailsWebviewProvider
@@ -206,7 +206,7 @@ export class CommitDetailsWebviewProvider
206206
wip: undefined,
207207
orgSettings: this.getOrgSettings(),
208208
hasAccount: undefined,
209-
hasIntegrationsConnected: false,
209+
hasIntegrationsConnected: undefined,
210210
};
211211

212212
this._disposable = Disposable.from(

0 commit comments

Comments
 (0)