diff --git a/src/components/ResourceList/ResourceListDisplay.tsx b/src/components/ResourceList/ResourceListDisplay.tsx index e5cc708..fd8548d 100644 --- a/src/components/ResourceList/ResourceListDisplay.tsx +++ b/src/components/ResourceList/ResourceListDisplay.tsx @@ -157,6 +157,7 @@ const addItems = useListStore((s) => s.addItems); const searchIntervalRef = useRef(null) const lastItemTimestampRef = useRef(null) const stringifiedEntityParams = useMemo(()=> { + if(!entityParams) return null return JSON .stringify(entityParams) }, [entityParams])