Junhee Park

Results 9 comments of Junhee Park

Hi guys, I've also discovered that the plugin is broken. As this repository is no longer maintained, I forked it and made a small fix. You can find my release...

Hey! I added this feature to the repository I forked. You can get it here [link](https://github.com/wns3645/logseq-plugin-block-to-page/releases/tag/v1.0.0).

@fanyangto Did the URL hyperlink plugin also have the feature to display a favicon? I can't check how it works because it has shut down. Because of the implementation of...

Hi, it seems that the Notion web clipper does not use background html, but it uses popup html(and the file name is `index.html`). So you can check network calls via...

@DamianOsipiuk I understand your concern about `readonly`. In react-query, the `data` object returned by `useQuery` is also not immutable. Issues about mutating properties in data directly can occur in `react-query`,...

> will there be an advantage if you immediately use shallowRef, without casting toRefs? In `useBaseQuery` and `useMutation`, using shallowReactive and toRefs make it easy to convert each property(data, isLoading,...

> why didn't you want to use readonly only in dev mode? @teleskop150750 Using deep readonly in dev mode also causes performance issues when we want to test the large...

@teleskop150750 Yes, I agree with you about using shallowReadonly only in dev mode like vue/core example.(I thought about using deep readonly 😅) > Some tanstack/query implementations in other frameworks do...

@DamianOsipiuk Tested it with `shallow: true` option in my project and can confirm it works well 👍