@applica-software-guru/react-admin 1.4.199 → 1.4.200

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": "@applica-software-guru/react-admin",
3
- "version": "1.4.199",
3
+ "version": "1.4.200",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -132,8 +132,6 @@ const DefaultState: ILayoutState = {
132
132
 
133
133
  function LayoutProvider(props: ILayoutProviderProps) {
134
134
  const authProvider = useAuthProvider<IApplicaAuthProvider>();
135
- // eslint-disable-next-line no-console
136
- console.log('authProvider: ', authProvider);
137
135
  const identity = useGetIdentity() as UseGetIdentityResult,
138
136
  theme = useTheme(),
139
137
  downMd = useMediaQuery(theme.breakpoints.down('md')),
@@ -39,9 +39,9 @@ class ErrorEventHandler implements IErrorEventHandler {
39
39
  column: error.colno,
40
40
  stack: error.error?.stack,
41
41
  })
42
- }).catch(() => {
42
+ }).catch((error) => {
43
43
  // eslint-disable-next-line no-console
44
- console.log('Unable to send error to server');
44
+ console.warn('Unable to send error to server', error);
45
45
  this.#handledErrors.delete(hash);
46
46
  });
47
47
  return;