Results 19 comments of dennev

Was it a mixed backward and forward operation? Would #533 apply to your case?

You can do this as follows: ```ts import type { JSX } from 'solid-js'; import { useI18n } from '~/primitives/i18n'; export default function Parent(props: { children?: JSX.Element }) { const...

@wes337 @multivoltage https://github.com/solidjs/solid-start/discussions/1926#discussioncomment-13820196 I'm guessing it's because the Render Context and Server Function Context are different. It may depend on the implementation of getPillBySlug, but if it's not a value...

This isn't a bug; signal() can't just fetch a part of a nested internal structure. If you want a responsive element for more complex structures, [createStore](https://docs.solidjs.com/reference/store-utilities/create-store) will help. In the...

I briefly looked into this issue. First, `TextField` is not based on the `input` component but on a `div`. The key difference causing this issue is the different behavior mechanism...

Since this is an issue with the [solid-meta](https://github.com/solidjs/solid-meta) module, it will be handled by [solid-meta #63](https://github.com/solidjs/solid-meta/pull/63).

As I mentioned in the PR, this can only solve one-dimensional arrays, and unlike client-side processing, which solves all nested arrays, it cannot currently solve arrays of two or more...

The use of `$ServerOnly` causes this issue. If you remove the `$ServerOnly` in `examples/notes/src/app.tsx:14`, `examples/notes/src/components/SearchField.tsx:15` HMR works fine. [In the mentioned issue](https://github.com/solidjs/solid/issues/264#issuecomment-1103469279): > Of course if the browser ever tried...

https://docs.solidjs.com/solid-router/getting-started/config According to the official documentation, the usage is as follows and this works fine. ```ts function App() { return ( {[ { path: "/", component: props => {props.children}, children:...

The problem is that the outer `Suspense` component isn't being unmounted when you navigate back to the home page (/). It stays in place and simply swaps its child from...