@wf-financing/ui 3.12.0 → 3.12.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wf-financing/ui",
3
- "version": "3.12.0",
3
+ "version": "3.12.2",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./dist/index.es.js",
@@ -38,7 +38,7 @@
38
38
  "react-markdown": "^10.1.0",
39
39
  "styled-components": "^6.1.19",
40
40
  "@wf-financing/embedded-types": "0.7.0",
41
- "@wf-financing/ui-assets": "0.2.0",
41
+ "@wf-financing/ui-assets": "0.3.0",
42
42
  "@wf-financing/logger": "1.1.1"
43
43
  },
44
44
  "publishConfig": {
package/src/main.tsx CHANGED
@@ -26,7 +26,6 @@ export const mountToTarget = async (
26
26
 
27
27
  const hostEl = document.getElementById(savedTargetId as string);
28
28
  if (!hostEl) {
29
- Logger.logError(`Target element with id "${savedTargetId}" not found.`);
30
29
  throw new Error(`Target element with id "${savedTargetId}" not found.`);
31
30
  }
32
31