Ian VanSchooten
Ian VanSchooten
@abielzulio I think the solution is not to specify a generic FormValues on `useForm`, and you probably shouldn't use `.default` except in rare situations (like maybe a radio button that...
Personally I'd rather let typescript infer the types itself rather than specifing overrides, but yes I think that using `z.input` would likely work. The full signature is `useForm`, but again,...
Looks similar to https://github.com/growthbook/growthbook/issues/2237. I believe this is because a `exports.import` is being exported that is a `.js` file, but the package.json type is commonjs (no `"type": "module"). https://github.com/growthbook/growthbook/blob/0c87c6a01725b5c81a2752601dfe67fa5dbd8899/packages/sdk-react/package.json#L11
From what I can tell, it does _try_ to apply some opacity. https://github.com/juliansteenbakker/mobile_scanner/blob/c3271f0cda3df5594a4cebc02696007657785861/example/lib/mobile_scanner_overlay.dart#L147C21-L147C41 ```dart // First, draw the background, // with a cutout area that is a bit larger than...
@RobertCer I'm not having any luck with that, did you change anything else as well? Edit: Ah hah, changing from `Rect.largest` to `Rect.fromLTWH(0, 0, size.width, size.height)` seems to solve it...
Y'all, just add thumbs to the original issue above.
@Schniz thanks, is this useful? ``` PS C:\Windows\system32> fnm install 22 Installing ←[36mNode v22.14.0←[0m (x64) 00:00:05 ████████████████████████████████████████████████████████████████████████████████████████████████ 33.29 MiB/33.29 MiB (6.02 MiB/s, 0s) PS C:\Windows\system32> fnm env $env:PATH = "C:\Users\ianvs\AppData\Local\fnm_multishells\536_1740402936471;C:\Program...
Thanks for the condescension, but this ~~solution~~ workaround is temporary and does not persist when opening another PowerShell terminal. There are [docs](https://github.com/Schniz/fnm#powershell) for adding some lines to the profile to...
@Schniz I followed the instructions on the node.js download page. I see now that the readme includes links to "set up your shell", but that points to the "Completions" section,...
Thank you, but I don't quite understand how this can help me. I currently have imports written without extensions, like `import { Link } from '#components/atoms/link/Link';`, and a subpath import...