David Fahlander
David Fahlander
The observable result is `undefined` on initial render because querying indexedDB is an async operation. The [tutorial for Svelte, step 5](https://dexie.org/docs/Tutorial/Svelte#5-create-a-component-that-queries-data) tries to explain this under the "Notice 2 things...
Please feel free to edit the docs to explain or link to Dexie's Svelte tutorial. `await` blocks can be used when the query doesn't need to update when data changes....
Hi! Latest dexie-cloud beta needs [email protected]. Install it using `yarn add dexie@next`.
Ok thanks for the repro. I'll try to dive into it the coming days! In latest version of dexie-cloud-addon, rxjs is changed to be a peerDependency instead of a normal...
I found the reason and am working on a fix. It's not about vite but rather the modern build of dexie-cloud-addon.
Still having other issue with this repro that I'm investigating
Latest master has a problem that was not detected in ordinary unit tests but ends up in PrematureCommitError. I have reverted the npm dist-tag 'next' and pointed it back to...
On the other hand, the latest release of dexie-cloud-addon (4.0.0-beta.18) can be combined with [email protected] and could be a solution to this issue.
Table.delete() does not take a string - it takes an [IndexableType](https://dexie.org/docs/Indexable-Type), which can be an array. You can perfectly well do: ```ts await walletTable.delete(['key1', 'key2']); ``` ... given that you've...
This can happen only when awaiting more than 100 non-promises in a row. In your case a loop that awaits non-promises triggers it. As you point out, the limit was...