Oleksandr Serhiienko

Results 4 comments of Oleksandr Serhiienko

@vxncetxn It works if you specify ref as a function: ``` ref={(el) => (num === 1 ? (oneRef = el) : (twoRef = el))} ``` https://playground.solidjs.com/?hash=1401208615&version=1.4.3

This solves the issue for me: ```typescript // cypress.config.ts import {defineConfig} from 'cypress' export default defineConfig({ e2e: { baseUrl: 'http://localhost:8080', setupNodeEvents(on, config) { // prettier-ignore on('before:browser:launch', (browser, launchOptions) => {...

@AlexSdet, it seems `launchOptions.preferences.default.autofill` is `undefined` in your case, while it should be an object. Have no idea why. Try optionally initialize it: ``` launchOptions.preferences.default.autofill ??= {} launchOptions.preferences.default.autofill.profile_enabled = false...

> well this is annoying :( any alternatives or is anyone maintaining a fork / version ? May be an alternative. It doesn't have a lot of stars, but the...