DWJ
DWJ
This also happens on win11 and wsl2 and 0.349.0. Rollback to 0.309.0 fixed it. The command run manually in wsl: ` ls -a $(wslpath -w c:/Users/me/Desktop/devc)` (fails) ` ls -a...
# workaround ```js // ChatGPT import z from "zod"; // Convert zod nullable types to optional types export function convertNullableToOptional( schema: z.ZodObject ): z.ZodObject { const newShape: any = {};...
The RigidBody ref wont get set, it stays null. There were also react warnings in console about ref prop. When updated to react 19 (from 18) and @react-three/fiber 9 (from...
Remove `@storybook/addon-ondevice-actions` from `.storybook\main.ts`: ``` import { StorybookConfig } from "@storybook/react-native"; const main: StorybookConfig = { stories: ["./stories/**/*.stories.?(ts|tsx|js|jsx)"], addons: ["@storybook/addon-ondevice-controls"], }; export default main; ``` Run command: ```bash sb-rn-get-stories ```...
Hi normally they show up in ./work_dir when the agent writes to ~/ What path is the agent writing to?
If you add a file testfile.txt to ./work_dir using vscode does it show up in one of these dirs in the container? ``` ls /root/agent-zero ls /root ls ~ find...
I get this error on win11 when I run it in git bash instead of wsl. I have dockerd running in wsl only. It can't see dockerd from git bash....
Workaround: Check version: `$ pnpm why @prisma/client`. Change version of prisma in 2 places in `package.json` to match version given above. ``` { "name": "keystone-app", "version": "1.0.3", "private": true, "scripts":...
> [@briazzi64](https://github.com/briazzi64) [@Wei102193](https://github.com/Wei102193) how about on web? i get the error `Cannot read properties of undefined (reading 'v1')` I was getting this error on web, and node_modules had uuid v9...