sanity 4.4.0-next.26 → 4.4.0-next.28

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.
@@ -6536,7 +6536,10 @@ function useDocumentPaneInspector({
6536
6536
  setParams(toggle ? {
6537
6537
  ...params,
6538
6538
  inspect: "on"
6539
- } : omit(params, "inspect"));
6539
+ } : {
6540
+ ...params,
6541
+ inspect: void 0
6542
+ });
6540
6543
  }, [inspectOpen, params, setParams]), handleLegacyInspectClose = useCallback(() => toggleLegacyInspect(!1), [toggleLegacyInspect]), handleInspectorAction = useCallback((item) => {
6541
6544
  if (item.action === "inspect")
6542
6545
  return toggleLegacyInspect(!0), !0;