diff --git a/docs/tutorials/nextjs/sdkintegration.md b/docs/tutorials/nextjs/sdkintegration.md index e591eb39..ebb1998d 100644 --- a/docs/tutorials/nextjs/sdkintegration.md +++ b/docs/tutorials/nextjs/sdkintegration.md @@ -129,7 +129,7 @@ We're also going to add some state variables to the component along with their t ```typescript const [address, setAddress] = useState("") const [loading, setLoading] = useState(false); - const [smartAccount, setSmartAccount] = useState(null); + const [smartAccount, setSmartAccount] = useState(null); const [provider, setProvider] = useState(null) ```