Skip to content

Commit

Permalink
fix: arguments order
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 committed Mar 6, 2024
1 parent 564217a commit 72ce437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/studio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class Studio {
this.telemetry,
);
// Create catalog manager, responsible for loading the catalog files and watching for changes
this.catalogManager = new CatalogManager(appUserDirectory, this.#panel.webview);
this.catalogManager = new CatalogManager(this.#panel.webview, appUserDirectory);
this.modelsManager = new ModelsManager(
appUserDirectory,
this.#panel.webview,
Expand Down Expand Up @@ -162,7 +162,7 @@ export class Studio {
taskRegistry,
);

await this.catalogManager.loadCatalog();
this.catalogManager.init();
await this.modelsManager.loadLocalModels();
podmanConnection.init();
this.playgroundManager.adoptRunningPlaygrounds();
Expand Down

0 comments on commit 72ce437

Please sign in to comment.