We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Qwik Runtime
When using a component similar to the below, when you navigate to the page which renders the component, the website crashes with the following error:
Cannot set property value of #<SignalDerived> which has only a getter TypeError: Cannot set property value of #<SignalDerived> which has only a getter
This is the error producing code:
import { component$, type Signal } from "@builder.io/qwik"; export const Foo = component$((props: { ref?: Signal<HTMLElement> }) => { const Tag = Math.random() ? "div" : "span"; return <Tag ref={props.ref}>Foo element</Tag>; }); export default component$(() => { return <Foo />; });
https://github.com/DustinJSilk/qwik-ref-undefined
System: OS: macOS 15.1.1 CPU: (12) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz Memory: 2.37 GB / 16.00 GB Shell: 5.9 - /bin/zsh Binaries: Node: 20.17.0 - ~/.nvm/versions/node/v20.17.0/bin/node npm: 10.8.2 - ~/.nvm/versions/node/v20.17.0/bin/npm pnpm: 9.0.5 - ~/Library/pnpm/pnpm Browsers: Chrome: 131.0.6778.109 Safari: 18.1.1 npmPackages: @builder.io/qwik: ^1.11.0 => 1.11.0 @builder.io/qwik-city: ^1.11.0 => 1.11.0 typescript: 5.4.5 => 5.4.5 undici: * => 7.1.0 vite: 5.3.5 => 5.3.5
The text was updated successfully, but these errors were encountered:
Qwik v2 is failing too
QWIK ERROR WrappedSignal is read-only Error: WrappedSignal is read-only
Sorry, something went wrong.
No branches or pull requests
Which component is affected?
Qwik Runtime
Describe the bug
When using a component similar to the below, when you navigate to the page which renders the component, the website crashes with the following error:
This is the error producing code:
Reproduction
https://github.com/DustinJSilk/qwik-ref-undefined
Steps to reproduce
System Info
Additional Information
Please clone the repository to test.
The text was updated successfully, but these errors were encountered: