bitttttten
bitttttten
Hm, what do you mean by spread applying props? I can't see where I am spreading any object 😬
A temporary fix is: ```js function Outer({ children }: HTMLProps) { return children } function Index() { return ( ) } ``` as I guess [the spreading here ](https://github.com/probablyup/buttermilk/blob/3cc3dc2624424722062ead9ae46881be62dc2d32/src/components.js#L81)is what...
So where can we find something similar that's active and up to date? Does anyone have any recommendations? Edit: [phantomjs-node](https://github.com/amir20/phantomjs-node) looks active.
I'm getting a similar error but with 403: ```sh Run bahmutov/npm-install@v1 running npm-install GitHub Action trying to restore cached NPM modules Error: Cache service responded with 403 at Object. (/home/runner/work/_actions/bahmutov/npm-install/v1/dist/index.js:3503:19)...
I think it's related to how you are using [coerce here](https://github.com/expo-community/standard-version-expo/blob/445d8d1f8f1fe63374aa82b726dd283d5ad81f6e/src/versions.ts#L13). If I understand correctly, coerce will force the version into semver and will drop the prerelease tag. Still researching,...
That would make sense to me. Although just to make it clear, I am not able to upload a build to play store if it contains the same version code...
How are you mocking resource queries @veitbjarsch ? For me Jest will complain that the module cannot be found. ```sh Cannot find module '../assets/user_background.jpg?min=320&max=800&steps=3' from 'index.test.tsx' ```
You can temporarily fix this by adding the definition into your types file. ```ts type InputMaybe = Maybe ``` For a create-react-app project, that file is `react-app-env.d.ts`.
> @bitttttten the temporary fix isn't working for me. Is there a way I can get it added into the type generation step? What is the difference between `InputMaybe` and...
I've just got ``` javascript import React, { Component } from 'react' export default class Main extends Component { constructor(props) { super(props) this.state = { counter: 0 } } render()...