You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Identifier ("a") can not be captured inside the scope (onClick$) because it is a Promise, which is not serializable. Check out https://qwik.builder.io/docs/advanced/optimizer for more details.',
325
337
],
326
338
},
339
+
{
340
+
code: `
341
+
import { useMethod, component$ } from 'stuff';
342
+
export interface Value {
343
+
value: () => void;
344
+
}
345
+
export const HelloWorld = component$(() => {
346
+
const state: Value = { value: () => console.log('thing') };
347
+
useWatch$(() => {
348
+
console.log(state.value);
349
+
});
350
+
return <Host></Host>
351
+
});`,
352
+
errors: [
353
+
'Identifier ("state") can not be captured inside the scope (useWatch$) because "state.value" is a function, which is not serializable. Check out https://qwik.builder.io/docs/advanced/optimizer for more details.',
0 commit comments