Skip to content

Commit 1e403f4

Browse files
committed
fix: don't wrap jsParams in jsParams key
1 parent eb219e5 commit 1e403f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/networks/src/networks/vNaga/shared/factories/BaseModuleFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ export function createBaseModule<T, M>(config: BaseModuleConfig<T, M>) {
12131213
ipfsId: params.executionContext.ipfsId,
12141214
}),
12151215
...(params.executionContext.jsParams && {
1216-
jsParams: { jsParams: params.executionContext.jsParams },
1216+
jsParams: params.executionContext.jsParams,
12171217
}),
12181218
});
12191219

0 commit comments

Comments
 (0)