react-instantsearch-core

7.25.07.26.0
dist/cjs/lib/InstantSearchRSCContext.js
~dist/cjs/lib/InstantSearchRSCContext.jsModified
+11−12
Index: package/dist/cjs/lib/InstantSearchRSCContext.js
===================================================================
--- package/dist/cjs/lib/InstantSearchRSCContext.js
+++ package/dist/cjs/lib/InstantSearchRSCContext.js
@@ -1,14 +1,13 @@
-"use strict";
+'use strict';
 
-Object.defineProperty(exports, "__esModule", {
-  value: true
+var React = require('react');
+
+var InstantSearchRSCContext = React.createContext({
+    countRef: {
+        current: 0
+    },
+    waitForResultsRef: null,
+    ignoreMultipleHooksWarning: false
 });
-exports.InstantSearchRSCContext = void 0;
-var _react = require("react");
-var InstantSearchRSCContext = exports.InstantSearchRSCContext = /*#__PURE__*/(0, _react.createContext)({
-  countRef: {
-    current: 0
-  },
-  waitForResultsRef: null,
-  ignoreMultipleHooksWarning: false
-});
\ No newline at end of file
+
+exports.InstantSearchRSCContext = InstantSearchRSCContext;