Skip to content

Commit ec92a36

Browse files
fix null
1 parent d3e5030 commit ec92a36

File tree

1 file changed

+1
-1
lines changed
  • apps/playground-web/src/app/ai/api

1 file changed

+1
-1
lines changed

apps/playground-web/src/app/ai/api/chat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export async function promptNebula(params: {
2222
body.context = {
2323
chain_ids: params.context.chainIds?.map(Number) || [],
2424
session_id: params.context.sessionId ?? undefined,
25-
from: params.context.walletAddress,
25+
from: params.context.walletAddress ?? undefined,
2626
auto_execute_transactions:
2727
params.context.autoExecuteTransactions || false,
2828
};

0 commit comments

Comments
 (0)