rhythmic-musician-58953
01/04/2023, 4:58 PMreact-spa
example app there's a bug (throws invalid hook error) in the Recovery.tsx
component.
createFlow
is declared as
const createFlow = () =>
useCallback(
...
)
whereas it should be:
const createFlow = useCallback(
...
)
proud-plumber-24205
01/04/2023, 5:00 PM