Yudai Shinnoki
Yudai Shinnoki
+1 We're also using react-native-vector-icons with react-native-web, and facing same error for production build only.
I faced the same problem with Yarn berry monorepo and just passed `sls package`. - [email protected] - [email protected] - berry enabled - yarn workspaces - `nodeLinker: node-modules` I started with...
I've tried this plugin with `[email protected]` and `[email protected]`, and found out that `OFFLINE_STEP_FUNCTIONS_ARN_` environment variables do not appear. As a workaround, directly defining `arn:aws:states:${region}:${accountId}:stateMachine:${stateMachineName}` in lambda codes seems working.
Same issue. As a workaround, you can override error message by passing `errorMap`. ```typescript dateOfBirth: z .date({ errorMap: (issue, { defaultError }) => ({ message: issue.code === "invalid_date" ? "That's...