diff --git a/README.md b/README.md index f3b4ebd..4852ce6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ First, download the template: yarn create next-app account-kit-app -e https://github.com/avarobinson/account-kit-quickstart ``` -### Get you alchemy api key +### Get your alchemy api key - Create a new embedded accounts configuration for an alchemy app in your [dashboard](https://dashboard.alchemy.com/accounts) - Replace the api key in the config.ts file diff --git a/app/providers.tsx b/app/providers.tsx index e9d4114..b0ae623 100644 --- a/app/providers.tsx +++ b/app/providers.tsx @@ -3,7 +3,7 @@ import { config, queryClient } from "@/config"; import { AlchemyClientState } from "@account-kit/core"; import { AlchemyAccountProvider } from "@account-kit/react"; import { QueryClientProvider } from "@tanstack/react-query"; -import { PropsWithChildren, Suspense } from "react"; +import { PropsWithChildren } from "react"; export const Providers = ( props: PropsWithChildren<{ initialState?: AlchemyClientState }>