Skip to content

Commit

Permalink
fix: expiration time for session account
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Jan 17, 2025
1 parent a43983c commit 90c9387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/controller/src/session/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export default class SessionProvider extends BaseProvider {
address: sessionRegistration.address,
ownerGuid: sessionRegistration.ownerGuid,
chainId: this._chainId,
expiresAt: expirationTime,
expiresAt: parseInt(sessionRegistration.expiresAt),
policies: toWasmPolicies(this._policies),
});

Expand Down

0 comments on commit 90c9387

Please sign in to comment.