diff --git a/packages/react/src/components/LoadedCode.tsx b/packages/react/src/components/LoadedCode.tsx index 9c17942..9c33963 100644 --- a/packages/react/src/components/LoadedCode.tsx +++ b/packages/react/src/components/LoadedCode.tsx @@ -18,10 +18,10 @@ export const LoadedCode = forwardRef( })(); }, [from]); - const ref = useRef(null); + const ref = useRef(null); useEffect(() => { - if (ref.current && !ref.current.dataset.highlighted) { + if (state && ref.current && !ref.current.dataset.highlighted) { hljs.highlightElement(ref.current); } }, [state]); @@ -31,7 +31,7 @@ export const LoadedCode = forwardRef( className={`relative hljs w-full h-64 rounded-lg ${ !state ? "animate-pulse" : "" }`} - ref={outRef} + ref={ref} > - + {state ?? null}