ide-assi 0.93.0 → 0.94.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bundle.cjs.js
CHANGED
|
@@ -193599,7 +193599,7 @@ class IdeAssi extends HTMLElement
|
|
|
193599
193599
|
} catch (error) {
|
|
193600
193600
|
|
|
193601
193601
|
console.error(error);
|
|
193602
|
-
elAiChat.add("ai", error.replace("Error:", ""));
|
|
193602
|
+
elAiChat.add("ai", String(error).replace("Error:", ""));
|
|
193603
193603
|
}
|
|
193604
193604
|
|
|
193605
193605
|
/**
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193595,7 +193595,7 @@ class IdeAssi extends HTMLElement
|
|
|
193595
193595
|
} catch (error) {
|
|
193596
193596
|
|
|
193597
193597
|
console.error(error);
|
|
193598
|
-
elAiChat.add("ai", error.replace("Error:", ""));
|
|
193598
|
+
elAiChat.add("ai", String(error).replace("Error:", ""));
|
|
193599
193599
|
}
|
|
193600
193600
|
|
|
193601
193601
|
/**
|
package/package.json
CHANGED