Skip to content

Commit

Permalink
fix: change selectable asset parameter value
Browse files Browse the repository at this point in the history
  • Loading branch information
Anlerkan committed Jun 3, 2024
1 parent 0c60c5d commit a3e7b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WidgetController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class WidgetController {

if (selectableAssets) {
searchParams[SwapWidgetSearchParamKey.SELECTABLE_ASSETS] =
JSON.stringify(selectableAssets);
selectableAssets.join(",");
}

return `${SWAP_WIDGET_BASE_URL}?${new URLSearchParams(searchParams)}`;
Expand Down

0 comments on commit a3e7b66

Please sign in to comment.