Armen Hajrapetjan
Armen Hajrapetjan
Hello @JonathanMagnan thank you for your great work. Now it work good.
@iRoachie not support all property message: 'Property 'coloredButton' does not exist on type 'typeof MKButton'.'
@iRoachie it is this part of code MKButton.coloredButton() function coloredButton() is not defined in typescript.
I have same error, only when I get EF DBcontext in resolver of subscription Db context configuration: ```C# services.AddPooledDbContextFactory(options => { options .UseNpgsql(configuration.GetConnectionString("DefaultConnection"), o => o.MigrationsAssembly("Example")) .EnableSensitiveDataLogging(Debugger.IsAttached); }); ``` Repository...
My problem was that my `UnitOfWork` service had implemented only `IAsyncDisposable `after adding `IDisposable `implementation everything started working as it should. hopefully this will help someone
I have the same problem when I use **@react-navigation/native-stack** with **@react-navigation/stack** it works correctly
I have absolutely the same issue in the version v0.3.10. Only I do not know, if this bugfix is contained in the version v0.3.10
Something news here? I have still this problem.
here is my config file `.graphqlrc.yml` content: ``` projects: project1: schema: ./packages/project1/graphql-api/schema.graphql documents: ./packages/project1/gqls/*.ts project2: schema: ./packages/project2/graphql/schema.gql documents: ./packages/project2/**/*.graphql exclude: ./packages/project2/**/*.test.(tsx|ts) ``` project1 is work correctly but project2 ignoring itself...