We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46ccde0 commit 3a1a8f1Copy full SHA for 3a1a8f1
docs/utilities/async.mdx
@@ -124,7 +124,7 @@ const delayedCountAtom = atom(async (get) => {
124
})
125
126
const unwrapped1Atom = unwrap(delayedCountAtom)
127
-// The value is `undefiend` while pending
+// The value is `undefined` while pending
128
129
const unwrapped2Atom = unwrap(delayedCountAtom, (prev) => prev ?? 0)
130
// The value is `0` initially, and subsequent updates keep the previous value.
0 commit comments