Raqueebuddin Aziz
Raqueebuddin Aziz
### Describe the Question I am using the data select widget and would like to make it so that it is required for form submission. Thanks :)
``` {appState.title ? `${appState.title} - RedditLattice` : `RedditLattice`} ``` This in my root.tsx doesn't work and I have confirmed with a console log in a createEffect that appState.title does trigger...
## Error ``` TypeError: event.env.getStaticHTML is not a function at /var/task/netlify/functions/index.js:13920:30 at /var/task/netlify/functions/index.js:14386:29 at /var/task/netlify/functions/index.js:14141:18 at /var/task/netlify/functions/index.js:14406:7 at Runtime.handler (/var/task/netlify/functions/index.js:14417:24) at Runtime.handleOnceNonStreaming (file:///var/runtime/index.mjs:1028:29) ``` Route: https://solidjs--redditlattice.netlify.app/r/wallpapers Source Code: https://github.com/vanillacode314/redditlattice/tree/solidjs Repro:...
## Repro https://codesandbox.io/s/solidspringdoublemountrepro-7jqzuv?file=%2Fsrc%2Fmain.tsx ## Workaround ```js function() { let myRef return ( { if (myRef) return myRef = el }} > I get mounted twice and the second ref is...
```ts const id = toast.loading('Loading...', { duration: Number.POSITIVE_INFINITY }) await someLongRunningTask() toast.success('Success', { id, duration: 3000 }) ``` the success toast disappears instantly instead of 3 seconds.
# Report a bug ### 🔎 Search Terms nested morphs, default, pipe ### 🧩 Context - ArkType version: 2.1.22 - TypeScript version (5.1+): 5.9.2 - Other context you think may...
The doc says to use transactions if you need to have logic b/w your queries or use batch if you just want to send multiple queries at once. My use...