Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in multiple components and utility files #3770

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export function SolanaSignAndSendTransaction() {
}).compileToV0Message()

// Make a versioned transaction
const versionedTranasction = new VersionedTransaction(messageV0)
const versionedTransaction = new VersionedTransaction(messageV0)

signature = await walletProvider.signAndSendTransaction(versionedTranasction)
signature = await walletProvider.signAndSendTransaction(versionedTransaction)
} else {
// Create a new transaction
const transaction = new Transaction().add(instruction)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function WagmiCreatePasskeySignerTest() {
setPasskey(credential)
toast({
type: 'success',
title: 'Passkey created succesfully',
title: 'Passkey created successfully',
description: ''
})
} catch (error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export function SolanaSignAndSendTransaction() {
}).compileToV0Message()

// Make a versioned transaction
const versionedTranasction = new VersionedTransaction(messageV0)
const versionedTransaction = new VersionedTransaction(messageV0)

signature = await walletProvider.signAndSendTransaction(versionedTranasction)
signature = await walletProvider.signAndSendTransaction(versionedTransaction)
} else {
// Create a new transaction
const transaction = new Transaction().add(instruction)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function WagmiCreatePasskeySignerTest() {
setPasskey(credential)
toast({
type: 'success',
title: 'Passkey created succesfully',
title: 'Passkey created successfully',
description: ''
})
} catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils/SIWXUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export interface SIWXConfig {
*
* Constraints:
* - This method MUST verify all the sessions before storing them in the storage;
* - This method MUST replace all the sessions in the storage with the new ones succesfully otherwise it MUST throw an error.
* - This method MUST replace all the sessions in the storage with the new ones successfully otherwise it MUST throw an error.
*
* @param sessions SIWXSession[]
*/
Expand Down