@refinedev/core 4.32.0 → 4.32.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinedev/core",
3
- "version": "4.32.0",
3
+ "version": "4.32.2",
4
4
  "description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -23,7 +23,6 @@ import { useDeepMemo } from "@hooks/deepMemo";
23
23
  import { RouterBindings } from "src/interfaces/bindings";
24
24
 
25
25
  import { RouterPickerProvider } from "@contexts/router-picker";
26
- import warnOnce from "warn-once";
27
26
  import { RouterBindingsProvider } from "../../../contexts/router";
28
27
  import { useRouterMisuseWarning } from "../../../hooks/router/use-router-misuse-warning/index";
29
28
  import {
@@ -281,25 +280,6 @@ export const Refine: React.FC<RefineProps> = ({
281
280
  : {};
282
281
  /** */
283
282
 
284
- if (
285
- typeof window !== "undefined" &&
286
- window?.location?.hostname === "localhost"
287
- ) {
288
- warnOnce(
289
- true,
290
- `%c
291
- ✅ Zero-trust security model
292
- ✅ User/role management
293
- ✅ Granular access control
294
- ✅ Directory sync
295
- ✅ VPN-less secure deployments
296
- ✅ Direct connection to DBs
297
-
298
- Interested in any of the new backend features of refine? Join now and get early access -> https://s.refine.dev/go-enterprise`,
299
- "color: green; background: yellow; font-size: 17px",
300
- );
301
- }
302
-
303
283
  return (
304
284
  <QueryClientProvider client={queryClient}>
305
285
  <NotificationContextProvider {...notificationProviderContextValues}>