Georgiy Tarasov

Results 8 comments of Georgiy Tarasov

I have the similar error on Vercel. If we disable the command for ignoring the build step (`npx nx-ignore frontend`), it starts working with a cache as usual. However, it...

The same applies to the Next.js configuration. Is there any reason why `svgo: false` should be applied? There are a lot of SVG assets in our organization, so we had...

I have the same problem with version 4.18.7. Using `form.reset` doesn't clear `meta.error` of Field component. Issue could be solved downgrading to version 4.18.6.

Another workaround is to wrap the child element of `Link` with `React.forwardRef`: ``` import React from 'react'; import { styled } from '@compiled/react'; import Link from 'next/link'; const Anchor =...

I also have the same problem. Exiting animation doesn't work on iOS but it works on Android.

A similar crash happens on Android 10 on Redmi Note 9S (react-native-onesignal is 5.0.0): ``` java.lang.Exception: Service class vc.b could not be instantiated at lc.c.h(ServiceProvider.kt:59) at vd.a.k(OneSignalImp.kt:79) at fc.e.i(OneSignal.kt:17) at...

As a temporary solution it's possible to add a custom plugin: ```javascript module.exports = { theme: { g: ({ theme }) => theme('spacing'), extend: {}, }, plugins: [ plugin(function ({...

Patch for 1.11.11: ``` diff --git a/esm/plugin/timezone/index.js b/esm/plugin/timezone/index.js index 490aff2e5cc5eb1186d03cfc9809242554928f99..5ffab621423cbea2d04242e674ce82e73f67c751 100644 --- a/esm/plugin/timezone/index.js +++ b/esm/plugin/timezone/index.js @@ -12,10 +12,6 @@ var typeToPos = { var dtfCache = {}; var getDateTimeFormat =...