dirk-cfx-react 1.1.92 → 1.1.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.
@@ -4452,11 +4452,11 @@ function cloneConfig(value) {
4452
4452
  return JSON.parse(JSON.stringify(value));
4453
4453
  }
4454
4454
  function ServerOnlyFetcher() {
4455
- const { fetchConfig } = getScriptConfigInstance();
4455
+ const { fetchServerOnly } = getScriptConfigInstance();
4456
4456
  const { reinitialize } = useFormActions();
4457
4457
  react.useEffect(() => {
4458
4458
  let cancelled = false;
4459
- fetchConfig().then((full) => {
4459
+ fetchServerOnly().then((full) => {
4460
4460
  if (!cancelled && full) reinitialize(full);
4461
4461
  }).catch(() => {
4462
4462
  });