Fix Could not resolve "virtual:component-loader" in gradio/utils package (#8927)

* add catch clause to fix not being able to use newest npm package versions

* format

* add changeset

* add changeset

---------

Co-authored-by: Freddy Boulton <alfonsoboulton@gmail.com>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Andrin Benz 2024-07-29 19:07:52 +02:00 committed by GitHub
parent 69f1e36f7d
commit 223688b70a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 4 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/utils": patch
"gradio": patch
---
fix:Fix `Could not resolve "virtual:component-loader"` in gradio/utils package

View File

@ -234,10 +234,14 @@ export class Gradio<T extends Record<string, any> = Record<string, any>> {
this.client = client;
if (!virtual_component_loader) {
import("virtual:component-loader").then((module) => {
this._load_component = module.load_component;
virtual_component_loader = module.load_component;
});
import("virtual:component-loader")
.then((module) => {
this._load_component = module.load_component;
virtual_component_loader = module.load_component;
})
.catch((e) => {
console.error("Error loading virtual component loader", e);
});
} else {
this._load_component = virtual_component_loader;
}