From b440f92c5e0b865352b94ec813074a493164b8b5 Mon Sep 17 00:00:00 2001 From: rizky Date: Wed, 21 Aug 2024 08:19:36 -0700 Subject: [PATCH] fix imgthumb --- exports.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/exports.tsx b/exports.tsx index 475179d..0128d9b 100755 --- a/exports.tsx +++ b/exports.tsx @@ -19,10 +19,6 @@ export const Typeahead = lazify( async () => (await import("@/comps/ui/typeahead")).Typeahead ); -export const ImgThumb = lazify( - async () => (await import("@/comps/form/field/type/FilePreview")).ImgThumb -); - /** Master - Detail - List - Form */ export const MasterDetail = lazify( async () => (await import("@/comps/md/MasterDetail")).MasterDetail @@ -99,7 +95,6 @@ export const KeyValue = lazify( async () => (await import("@/comps/form/field/type/KeyValue")).KeyValue ); - export { fetchLinkParams } from "@/comps/form/field/type/TypeLink"; export { FieldLoading, Spinner } from "@/comps/ui/field-loading"; export { lang } from "lib/lang"; @@ -107,6 +102,7 @@ export { prasi_gen } from "./gen/prasi_gen"; export { guessLabel } from "./utils/guess-label"; import __get from "lodash.get"; import { sum } from "./utils/sum"; +export { ImgThumb } from "@/comps/form/field/type/FilePreview"; export { lastParams } from "@/comps/form/field/type/TypeLink"; export { _post } from "./utils/post"; export { toast, Toaster } from "./comps/ui/toast";