Skip to content

Commit 65b26ed

Browse files
Fixes incorrect context value
1 parent 75e560f commit 65b26ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plus/launchpad/launchpadProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ export class LaunchpadProvider implements Disposable {
983983
if (e.reason === 'connected') {
984984
void setContext('gitlens:launchpad:connect', false);
985985
} else {
986-
void setContext('gitlens:launchpad:connect', await this.hasConnectedIntegration());
986+
void setContext('gitlens:launchpad:connect', !(await this.hasConnectedIntegration()));
987987
}
988988
}
989989
}

0 commit comments

Comments
 (0)