Adam

Results 20 comments of Adam
trafficstars

@123aswin123 in your example you are consuming an [action](https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/introduction-to-github-actions#actions) from a [workflow](https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/introduction-to-github-actions#workflows) which is not the same as creating an action. This project is an example of how to **create**...

@rachmari, @andymckay, @jorgebg, @thboop - do you have any thoughts about this issue?

Thanks @rachmari. If there is a better place to open this issue - please do let me know where. Appreciate the link to the docs but it’s still unclear why...

Thanks @rachmari. Yes I tried NCC, but it threw an error in a certain project… so it seems unstable. Anyways, thanks for your responses. It’s not the end of the...

Thanks! I do appreciate this library. Also, a different workaround that I'm going with is to simply call `requestPaymentMethod()` on click of my button... and then creating my sale transaction...

I am reproducing this on my Next.js app. I only do SSR when running locally in dev mode, otherwise in production - I export static files via SSG. From what...

Hi @eps1lon: > And please clarify what "flaky results" specifically means (fails with what error(s)?). To clarify what I mean by "flaky results" - the assertion above would fail sometimes...

Thanks! So, ultimately `timeout` negates when to end and `interval` checks occur before the final `timeout`. I thought I provided enough details about the error: > The failure would be...

@eps1lon here is the full error: ``` PASS src/useLazyDataFetch.test.tsx FAIL src/useDataFetch.test.tsx ● useDataFetch › triggers a refetch when explicitly called TestingLibraryElementError: Unable to find an element with the text: times...

`useDataFetch` FWIW (sorry, they use 4 spaces per tab at my job): ```typescript import { Reducer, useEffect, useState, useReducer } from 'react'; import { DataFetchStateType, DataFetchActionType } from './types'; import...