guideai-app 0.4.3-8 → 0.4.3-9

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/README.md CHANGED
@@ -25,7 +25,6 @@ function App() {
25
25
  React={React}
26
26
  ReactDOM={ReactDOM}
27
27
  position={{ bottom: '20px', right: '20px' }}
28
- onError={(error) => console.error(error)}
29
28
  />
30
29
  </div>
31
30
  );
@@ -40,7 +39,6 @@ function App() {
40
39
  | `React` | `React` | Yes | React instance from your application |
41
40
  | `ReactDOM` | `ReactDOM` | Yes | ReactDOM instance from your application |
42
41
  | `position` | `object` | No | CSS positioning for the component (see below) |
43
- | `onError` | `function` | No | Error handler callback: `(error: string \| Error) => void` |
44
42
 
45
43
  ## Position Object
46
44
 
@@ -212,7 +210,6 @@ function App() {
212
210
  React={React}
213
211
  ReactDOM={ReactDOM}
214
212
  position={{ bottom: '40px', right: '40px' }}
215
- onError={handleError}
216
213
  />
217
214
  </div>
218
215
  );