@arquimedes.co/eureka-forms 2.0.92 → 2.0.93
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/App/App.js +1 -2
- package/package.json +1 -1
package/dist/App/App.js
CHANGED
|
@@ -28,7 +28,7 @@ import './App.css';
|
|
|
28
28
|
import FormComponent from '../Form/Form';
|
|
29
29
|
import { Provider } from 'react-redux';
|
|
30
30
|
import { store } from '../Utils/store';
|
|
31
|
-
import {
|
|
31
|
+
import { useSetupApp } from './AppHooks';
|
|
32
32
|
import { StoreContext, useAppSelector } from '../hooks';
|
|
33
33
|
import CustomContext from '../Contexts/CustomContext';
|
|
34
34
|
import { nanoid } from '@reduxjs/toolkit';
|
|
@@ -45,7 +45,6 @@ function App(_a) {
|
|
|
45
45
|
var containerRef = useRef(null);
|
|
46
46
|
var loaded = useAppSelector(function (state) { return state.global.loaded; });
|
|
47
47
|
var _j = useSetupApp(isWidget, props), form = _j.form, organization = _j.organization, branding = _j.branding, reload = _j.reload;
|
|
48
|
-
useLogRocket(organization, form, props);
|
|
49
48
|
var loading = form === undefined || organization === undefined || !loaded;
|
|
50
49
|
if (loading) {
|
|
51
50
|
if (isWidget) {
|