Skip to content

Commit

Permalink
fix: merge error due to change of remote_config_tasks (#1197)
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Tang <jeffrey@swirldslabs.com>
  • Loading branch information
JeffreyDallas authored Jan 22, 2025
1 parent 66cfc4d commit 9d1a8cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as constants from '../core/constants.js';
import {type ProfileManager} from '../core/profile_manager.js';
import {BaseCommand} from './base.js';
import {Flags as flags} from './flags.js';
import {RemoteConfigTasks} from '../core/config/remote/remote_config_tasks.js';
import {ListrRemoteConfig} from '../core/config/remote/listr_config_tasks.js';
import {type CommandBuilder} from '../types/aliases.js';
import {type Opts} from '../types/command_types.js';
import {ListrLease} from '../core/lease/listr_lease.js';
Expand Down Expand Up @@ -191,7 +191,7 @@ export class ExplorerCommand extends BaseCommand {
return ListrLease.newAcquireLeaseTask(lease, task);
},
},
RemoteConfigTasks.loadRemoteConfig.bind(this)(argv),
ListrRemoteConfig.loadRemoteConfig(this, argv),
{
title: 'Upgrade solo-setup chart',
task: async ctx => {
Expand Down Expand Up @@ -355,7 +355,7 @@ export class ExplorerCommand extends BaseCommand {
return ListrLease.newAcquireLeaseTask(lease, task);
},
},
RemoteConfigTasks.loadRemoteConfig.bind(this)(argv),
ListrRemoteConfig.loadRemoteConfig(this, argv),
{
title: 'Destroy explorer',
task: async ctx => {
Expand Down

0 comments on commit 9d1a8cb

Please sign in to comment.