solid-markdown icon indicating copy to clipboard operation
solid-markdown copied to clipboard

Reactivity not working.

Open DasLixou opened this issue 2 years ago • 0 comments

When i use

const [markdown, { mutate, refetch }] = createResource(...);
return <SolidMarkdown children={markdown()} />;

it doesnt work. it only works with

return <div>{!markdown.loading && <SolidMarkdown children={markdown()} />}</div>;

please fix this.

DasLixou avatar Jul 15 '22 13:07 DasLixou