Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: improve async docs, add reatomAsync.from #846

Open
wants to merge 2 commits into
base: v3
Choose a base branch
from

Conversation

krulod
Copy link
Collaborator

@krulod krulod commented May 20, 2024

No description provided.

@krulod krulod linked an issue May 20, 2024 that may be closed by this pull request
Copy link

vercel bot commented May 20, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
reatom ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 2, 2025 7:26pm

Copy link

stackblitz bot commented May 20, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@reatom-ci-cd
Copy link

reatom-ci-cd bot commented Mar 2, 2025

CI is unable to auto-fix prettier, please do it yourself by running npm run prettify.

})
fetchList.onReject.onCall((ctx, reason) => {
if (reason === ABORT) return
const error = thing instanceof Error ? thing : new Error(String(thing))
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems, thing should be replaced with reason

Suggested change
const error = thing instanceof Error ? thing : new Error(String(thing))
const error = reason instanceof Error ? reason : new Error(String(reason))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

No reatomAsync.from documentation
2 participants