Skip to content

Commit 2b5242c

Browse files
authored
fix: incorrect skipPreTransactionStateValidation flag verification (#144)
1 parent f8c26a6 commit 2b5242c

File tree

1 file changed

+1
-1
lines changed
  • packages/sdk/src/client/session/decorators

1 file changed

+1
-1
lines changed

packages/sdk/src/client/session/decorators/wallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export function zksyncSsoWalletActions<
8989
type: "eip712",
9090
};
9191

92-
if (client.skipPreTransactionStateValidation !== false) {
92+
if (client.skipPreTransactionStateValidation !== true) {
9393
// Get current session state and trigger callback if needed
9494
const sessionState = await getSessionStateAndNotify(client);
9595

0 commit comments

Comments
 (0)