Hisam Fahri
Hisam Fahri
@CRAG666 @kevinhwang91 How to remove the number '2' sign in the image above?
Tested, I can reproduced it on: ``` Darwin mac 21.5.0 Darwin Kernel Version 21.5.0: Tue Apr 26 21:08:29 PDT 2022; root:xnu-8020.121.3~4/RELEASE_ARM64_T8101 arm64 ```
Looks like it is related to #199
+1 here. Experiencing same issue. Only have about ~10 tables, and the intellisense is really-really slow.
I've split every table's schema in a different file (just like in the docs). And I put the `baseTable` inside the `index.ts` file (I've tried to change the filename or...
I am not really sure how it fixes it, but updating my `react-dom` dependencies solves it. Thank you for the comment @joaom00 👍
@AugustinMauroy That's a good point. However, I believe the expectations for most users are to open the clicked link in a new tab whenever they see a top-right arrow (↗)...
@colebemis FYI I have already explored this a while ago. My initial thought on this was as simple as that the pinned notes have a `#pinned` tag. And the notes...
My suspicion is that there's a different behavior if you call: 1. `http://localhost:3000/?tags=a&tags=b&&tags=c`, and 2. `http://localhost:3000/?tags=a,b,c` I think the "problem" here that if you query it with the first approach,...
> to get Eden Treaty to format query array parameters as a comma-separated list You can do this: ``` await api.query.get({ query: { tags: ['a', 'b', 'c'].join(",") } }) ```...