In the Ory elements repo `react-spa` example app t...
# ory-network
r
In the Ory elements repo
react-spa
example app there's a bug (throws invalid hook error) in the
Recovery.tsx
component.
createFlow
is declared as
Copy code
const createFlow = () =>
    useCallback(
     ...
    )
whereas it should be:
Copy code
const createFlow = useCallback(
    ...
    )
p
Hey @rhythmic-musician-58953 Thank you for the feedback, could you open an issue for this in ory/elements? Contributions are also welcome! 🙂
👌 1