From 82f953a3ca7e0ecdb52edadaae0de6b6831b578c Mon Sep 17 00:00:00 2001 From: Kabir Singh Shekhawat Date: Sat, 6 Apr 2024 18:04:11 +0530 Subject: [PATCH] Fix typo in web.md Fix typos in stripe migration guide for Web (Node backend and React frontend) --- hyperswitch-cloud/quickstart/migrate-from-stripe/web.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperswitch-cloud/quickstart/migrate-from-stripe/web.md b/hyperswitch-cloud/quickstart/migrate-from-stripe/web.md index 74f26c2..52b68a0 100644 --- a/hyperswitch-cloud/quickstart/migrate-from-stripe/web.md +++ b/hyperswitch-cloud/quickstart/migrate-from-stripe/web.md @@ -48,14 +48,14 @@ const paymentIntent = await stripe.paymentIntents.create({ const paymentIntent = await hyper.paymentIntents.create({ ``` -**Step 3:** Call loadHyper() with you Hyperswitch publishable key to configure the SDK library, from your website +**Step 3:** Call loadHyper() with your Hyperswitch publishable key to configure the SDK library, from your website ```js // from import { loadStripe } from "@stripe/stripe-js"; import { Elements } from "@stripe/react-stripe-js"; // to -import { loadStripe } from "@juspay-tech/hyper-js"; +import { loadHyper } from "@juspay-tech/hyper-js"; import { hyperElements } from "@juspay-tech/react-hyper-js"; ```