File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import type { HostingIntegrationId } from '../../constants.integrations';
8
8
import type { Container } from '../../container' ;
9
9
import { executeCommand , registerCommand } from '../../system/-webview/command' ;
10
10
import { configuration } from '../../system/-webview/configuration' ;
11
+ import { once } from '../../system/event' ;
11
12
import { groupByMap } from '../../system/iterable' ;
12
13
import { wait } from '../../system/promise' ;
13
14
import { pluralize } from '../../system/string' ;
@@ -41,10 +42,9 @@ export class LaunchpadIndicator implements Disposable {
41
42
provider . onDidRefresh ( this . onLaunchpadRefreshed , this ) ,
42
43
configuration . onDidChange ( this . onConfigurationChanged , this ) ,
43
44
container . integrations . onDidChangeConnectionState ( this . onConnectedIntegrationsChanged , this ) ,
45
+ once ( container . onReady ) ( this . onReady , this ) ,
44
46
...this . registerCommands ( ) ,
45
47
) ;
46
-
47
- void this . onReady ( ) ;
48
48
}
49
49
50
50
dispose ( ) {
You can’t perform that action at this time.
0 commit comments