Skip to content

Commit 75c0891

Browse files
committed
fix: typing
1 parent 51909d3 commit 75c0891

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/customer/app/test/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ export default function Test() {
647647
const authorizeSiwe = () => {
648648
const siwe_message = siweMessage({
649649
domain: 'localhost:3000',
650-
address: walletAddress,
650+
address: `${walletAddress}`,
651651
appName: 'SDK TEST APP',
652652
redirectUri: 'http://localhost:3000/dashboard',
653653
chainId: chainId,

packages/sdk/src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ export const siweMessage = ({
163163
appName: string;
164164
redirectUri: string;
165165
chainId: EvmChainId;
166-
issuedAt: string;
167-
expiryAt: string;
166+
issuedAt?: string;
167+
expiryAt?: string;
168168
privacyPolicyUrl: string;
169169
termsOfServiceUrl: string;
170170
}) => {

0 commit comments

Comments
 (0)