From 06c96c90118b27c40daac9003c3faa1a3305a9f6 Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sat, 28 Dec 2024 11:26:52 +0100 Subject: [PATCH 1/2] Update getInjectedConnector.ts --- packages/rainbowkit/src/wallets/getInjectedConnector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rainbowkit/src/wallets/getInjectedConnector.ts b/packages/rainbowkit/src/wallets/getInjectedConnector.ts index ef36bbe70c..04392cf854 100644 --- a/packages/rainbowkit/src/wallets/getInjectedConnector.ts +++ b/packages/rainbowkit/src/wallets/getInjectedConnector.ts @@ -35,7 +35,7 @@ function getWindowProviderNamespace(namespace: string) { } /* - * Checks if the explict provider or window ethereum exists + * Checks if the explicit provider or window ethereum exists */ export function hasInjectedProvider({ flag, From 88994ca516c353f53f667bc5991c5261383038d3 Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sat, 28 Dec 2024 11:27:44 +0100 Subject: [PATCH 2/2] Update DocsLayout.tsx --- site/components/DocsLayout/DocsLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/components/DocsLayout/DocsLayout.tsx b/site/components/DocsLayout/DocsLayout.tsx index f4811c18c0..df83a27401 100644 --- a/site/components/DocsLayout/DocsLayout.tsx +++ b/site/components/DocsLayout/DocsLayout.tsx @@ -59,7 +59,7 @@ export function DocsLayout({ children }: { children: React.ReactNode }) { setIsOpen(false); }, []); - // Listen to route change so we can programatically close + // Listen to route change so we can programmatically close // the docs mobile menu when changing routes. useEffect(() => { router.events.on('routeChangeStart', handleRouteChange);