diff --git a/docs/guides/performance.mdx b/docs/guides/performance.mdx index bed9709eab..8a6d364e0f 100644 --- a/docs/guides/performance.mdx +++ b/docs/guides/performance.mdx @@ -55,7 +55,7 @@ Dont's: ```jsx const Profile = () => { const [name] = useAtom(nameAtom) - const [ageAtom] = useAtom(ageAtom) + const [age] = useAtom(ageAtom) return ( <>
{name}