Skip to content

Commit

Permalink
chore: fix typo (#2600)
Browse files Browse the repository at this point in the history
Signed-off-by: riyueguang <[email protected]>
Co-authored-by: Enes <[email protected]>
  • Loading branch information
riyueguang and enesozturk authored Aug 8, 2024
1 parent f5873c1 commit 4bf3fa0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dangerfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ checkClientPackages()
// -- Check sdkVersion ------------------------------------------------------------
function checkSdkVersion() {
if (PACKAGE_VERSION !== corePackageJson.version) {
fail(`VERSION in utils/constants does't match core package.json version`)
fail(`VERSION in utils/constants doesn't match core package.json version`)
}
}
checkSdkVersion()
Expand Down
2 changes: 1 addition & 1 deletion packages/ethers/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export class Web3Modal extends Web3ModalScaffold {
}

const params = await siweConfig?.getMessageParams?.()
// Must perform these checks to satify optional types
// Must perform these checks to satisfy optional types
if (siweConfig?.options?.enabled && params && Object.keys(params || {}).length > 0) {
const { SIWEController, getDidChainId, getDidAddress } = await import('@web3modal/siwe')

Expand Down
2 changes: 1 addition & 1 deletion packages/ethers5/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class Web3Modal extends Web3ModalScaffold {
})

const params = await siweConfig?.getMessageParams?.()
// Must perform these checks to satify optional types
// Must perform these checks to satisfy optional types
if (siweConfig?.options?.enabled && params && Object.keys(params || {}).length > 0) {
const { SIWEController, getDidChainId, getDidAddress } = await import('@web3modal/siwe')

Expand Down

0 comments on commit 4bf3fa0

Please sign in to comment.