We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90e7c4b commit dc5ae7dCopy full SHA for dc5ae7d
plugins/fields/Json/Show.tsx
@@ -5,7 +5,7 @@ import React, { memo } from "react";
5
import ShowFieldWrapper from "@/features/fields/components/FieldWrapper/ShowFieldWrapper";
6
import dynamic from "next/dynamic";
7
8
-const DynamicReactJson = dynamic(import("react-json-view"), { ssr: false });
+const DynamicReactJson = dynamic(() => import("react-json-view"), { ssr: false });
9
10
const Show = ({ field }: { field: Field }) => {
11
let value;
0 commit comments