Skip to content

Commit

Permalink
fix: removed spread
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Sep 3, 2024
1 parent b87a01f commit 0f2128c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ export class WalletConnectCommunicationClient extends CommunicationClient {
}
}

const { uri, approval } = await signClient.connect({ ...connectParams }).catch((error) => {
const { uri, approval } = await signClient.connect(connectParams).catch((error) => {
logger.error(`Init error: ${error.message}`)
localStorage && localStorage.setItem(StorageKey.WC_INIT_ERROR, error.message)
throw new Error(error.message)
Expand Down

0 comments on commit 0f2128c

Please sign in to comment.