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.
@@ -4445,11 +4445,11 @@ function cloneConfig(value) {
4445
4445
  return JSON.parse(JSON.stringify(value));
4446
4446
  }
4447
4447
  function ServerOnlyFetcher() {
4448
- const { fetchConfig } = getScriptConfigInstance();
4448
+ const { fetchServerOnly } = getScriptConfigInstance();
4449
4449
  const { reinitialize } = useFormActions();
4450
4450
  useEffect(() => {
4451
4451
  let cancelled = false;
4452
- fetchConfig().then((full) => {
4452
+ fetchServerOnly().then((full) => {
4453
4453
  if (!cancelled && full) reinitialize(full);
4454
4454
  }).catch(() => {
4455
4455
  });