diff --git a/sdk/typescript/docs/pages/bundling/esbuild.mdx b/sdk/typescript/docs/pages/bundling/esbuild.mdx
index 2732aea63f..c794cf7ce6 100644
--- a/sdk/typescript/docs/pages/bundling/esbuild.mdx
+++ b/sdk/typescript/docs/pages/bundling/esbuild.mdx
@@ -1,3 +1,5 @@
+import { Callout } from 'nextra/components';
+
# Troubleshooting bundling with ESbuild
If you've been following the steps outlined in the Examples section, your development environment should be configured as follows:
@@ -22,4 +24,9 @@ Install the required package:
npm install @nymproject/< PACKAGE_NAME >
```
-By implementing the provided code for the various components in the step-by-step examples section, you should be able to set-up and run your application without encountering any bundling challenges!
\ No newline at end of file
+
+ Remember that the CosmosKit example will require you to make use of polyfills.
+
+
+By implementing the provided code for the various components in the step-by-step examples section, you should be able to set-up and run your application without encountering any bundling challenges!
+
diff --git a/sdk/typescript/docs/pages/examples/cosmos-kit.mdx b/sdk/typescript/docs/pages/examples/cosmos-kit.mdx
index 63f34df7a4..a143a148cf 100644
--- a/sdk/typescript/docs/pages/examples/cosmos-kit.mdx
+++ b/sdk/typescript/docs/pages/examples/cosmos-kit.mdx
@@ -57,7 +57,7 @@ export default defineConfig({
Your components have to be wrapped into a [ChainProvider](https://docs.cosmoskit.com/chain-provider),
in order to use the `useChain('nyx')` hook. The nyx chain is provided in the 'chain-registry' NPM package by default.
-Now, go to the `src` folder and open your `App.tsx` file to replace all the code with the following:
+Now, go to the `src` folder and open your `App.tsx` file to replace all the code with the following, which will allow you to connect and disconnect a Ledger or Keplr wallet to Nyx:
```ts
import "./App.css";
@@ -154,5 +154,4 @@ export default function App() {
)
}
-
```
diff --git a/sdk/typescript/docs/pages/playground/cosmos-kit.mdx b/sdk/typescript/docs/pages/playground/cosmos-kit.mdx
index 9d0044d321..ca200c6f65 100644
--- a/sdk/typescript/docs/pages/playground/cosmos-kit.mdx
+++ b/sdk/typescript/docs/pages/playground/cosmos-kit.mdx
@@ -5,12 +5,12 @@ import FormattedCosmoskitExampleCode from '../../code-examples/cosmoskit-example
# Cosmos Kit
-Below is an example that uses [CosmosKit](https://cosmoskit.com/) to connect your [Keplr wallet](https://www.keplr.app/) or
+Below is an example that uses [CosmosKit](https://cosmoskit.com/) to connect and sign a fake transaction with your [Keplr wallet](https://www.keplr.app/) or
[Ledger hardware wallet](https://www.ledger.com/) to this page:
-Once you connect either Keplr or your hardware Ledger, you can request a fake transaction to be signed. The hash
+Once you connect either Keplr or your hardware Ledger, you can request the fake transaction to be signed. The hash
of the message will be displayed.